diff options
author | Kloen <kloen@outlawkiwi.com> | 2017-01-29 23:17:07 +0100 |
---|---|---|
committer | Kloen <kloen@outlawkiwi.com> | 2017-01-30 00:12:07 +0100 |
commit | b3a0b1489b662a65b9cf3f96510436eb2974e443 (patch) | |
tree | 902cb24ef97b13a1005ec956aac0baf5049f47d6 | |
parent | Merge pull request #2491 from Kloen/killing-warnings-2.5HDRemix (diff) | |
download | yuzu-b3a0b1489b662a65b9cf3f96510436eb2974e443.tar yuzu-b3a0b1489b662a65b9cf3f96510436eb2974e443.tar.gz yuzu-b3a0b1489b662a65b9cf3f96510436eb2974e443.tar.bz2 yuzu-b3a0b1489b662a65b9cf3f96510436eb2974e443.tar.lz yuzu-b3a0b1489b662a65b9cf3f96510436eb2974e443.tar.xz yuzu-b3a0b1489b662a65b9cf3f96510436eb2974e443.tar.zst yuzu-b3a0b1489b662a65b9cf3f96510436eb2974e443.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.h b/src/core/core.h index 1015e8847..17572a74f 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -115,7 +115,7 @@ private: static System s_instance; }; -static ARM_Interface& CPU() { +inline ARM_Interface& CPU() { return System::GetInstance().CPU(); } |