summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-07-17 03:59:23 +0200
committerLioncash <mathew1800@gmail.com>2020-07-17 03:59:25 +0200
commitcc935d997b3b992dd5fb2fec9b04a36954e714b8 (patch)
tree376c0a55e8a245981508eeb5c6a42f0542eae5be
parentMerge pull request #4292 from bunnei/mii-rewrite (diff)
downloadyuzu-cc935d997b3b992dd5fb2fec9b04a36954e714b8.tar
yuzu-cc935d997b3b992dd5fb2fec9b04a36954e714b8.tar.gz
yuzu-cc935d997b3b992dd5fb2fec9b04a36954e714b8.tar.bz2
yuzu-cc935d997b3b992dd5fb2fec9b04a36954e714b8.tar.lz
yuzu-cc935d997b3b992dd5fb2fec9b04a36954e714b8.tar.xz
yuzu-cc935d997b3b992dd5fb2fec9b04a36954e714b8.tar.zst
yuzu-cc935d997b3b992dd5fb2fec9b04a36954e714b8.zip
-rw-r--r--src/video_core/macro/macro_hle.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/macro/macro_hle.cpp b/src/video_core/macro/macro_hle.cpp
index 410f99018..b64dc67c0 100644
--- a/src/video_core/macro/macro_hle.cpp
+++ b/src/video_core/macro/macro_hle.cpp
@@ -84,9 +84,9 @@ static void HLE_0217920100488FF7(Engines::Maxwell3D& maxwell3d,
} // namespace
constexpr std::array<std::pair<u64, HLEFunction>, 3> hle_funcs{{
- std::make_pair<u64, HLEFunction>(0x771BB18C62444DA0, &HLE_771BB18C62444DA0),
- std::make_pair<u64, HLEFunction>(0x0D61FC9FAAC9FCAD, &HLE_0D61FC9FAAC9FCAD),
- std::make_pair<u64, HLEFunction>(0x0217920100488FF7, &HLE_0217920100488FF7),
+ {0x771BB18C62444DA0, &HLE_771BB18C62444DA0},
+ {0x0D61FC9FAAC9FCAD, &HLE_0D61FC9FAAC9FCAD},
+ {0x0217920100488FF7, &HLE_0217920100488FF7},
}};
HLEMacro::HLEMacro(Engines::Maxwell3D& maxwell3d) : maxwell3d(maxwell3d) {}