diff options
author | Lioncash <mathew1800@gmail.com> | 2016-12-15 22:19:30 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2016-12-15 22:37:22 +0100 |
commit | ba20dd9b6125551ecf2016ed7dbd61dc618fc876 (patch) | |
tree | 339289e4a87660df3edf1d3263ecb0e22ca2b573 /src/core/core.cpp | |
parent | Merge pull request #2330 from lioncash/pragma (diff) | |
download | yuzu-ba20dd9b6125551ecf2016ed7dbd61dc618fc876.tar yuzu-ba20dd9b6125551ecf2016ed7dbd61dc618fc876.tar.gz yuzu-ba20dd9b6125551ecf2016ed7dbd61dc618fc876.tar.bz2 yuzu-ba20dd9b6125551ecf2016ed7dbd61dc618fc876.tar.lz yuzu-ba20dd9b6125551ecf2016ed7dbd61dc618fc876.tar.xz yuzu-ba20dd9b6125551ecf2016ed7dbd61dc618fc876.tar.zst yuzu-ba20dd9b6125551ecf2016ed7dbd61dc618fc876.zip |
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r-- | src/core/core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index 49ac8be6e..6efa18159 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -22,7 +22,7 @@ std::unique_ptr<ARM_Interface> g_sys_core; ///< ARM11 system (OS) core /// Run the core CPU loop void RunLoop(int tight_loop) { - if (GDBStub::g_server_enabled) { + if (GDBStub::IsServerEnabled()) { GDBStub::HandlePacket(); // If the loop is halted and we want to step, use a tiny (1) number of instructions to |