diff options
| author | JosJuice <josjuice@gmail.com> | 2017-02-05 08:25:12 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-05 08:25:12 +0100 |
| commit | e4d20647d4155387e491800f4de68540c5374ace (patch) | |
| tree | 30072ab5353ae98eb818cdeab6d6bd058e5575a9 /Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp | |
| parent | 567691d3f6358383926660bb42dcf4b2a954dff3 (diff) | |
| parent | f7b9db9846581a3b62042d8892c86c1e48f443ba (diff) | |
Merge pull request #4824 from lioncash/coremode
PowerPC: Convert CoreMode enum into an enum class
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp index f29e230565..9704a4f362 100644 --- a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp +++ b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp @@ -133,7 +133,7 @@ void CCodeWindow::OnProfilerMenu(wxCommandEvent& event) if (Core::GetState() == Core::CORE_RUN) Core::SetState(Core::CORE_PAUSE); - if (Core::GetState() == Core::CORE_PAUSE && PowerPC::GetMode() == PowerPC::MODE_JIT) + if (Core::GetState() == Core::CORE_PAUSE && PowerPC::GetMode() == PowerPC::CoreMode::JIT) { if (g_jit != nullptr) { |
