diff options
Diffstat (limited to 'Source/Core/DolphinNoGUI/MainNoGUI.cpp')
| -rw-r--r-- | Source/Core/DolphinNoGUI/MainNoGUI.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/DolphinNoGUI/MainNoGUI.cpp b/Source/Core/DolphinNoGUI/MainNoGUI.cpp index 0d7a84137e..af27952ca0 100644 --- a/Source/Core/DolphinNoGUI/MainNoGUI.cpp +++ b/Source/Core/DolphinNoGUI/MainNoGUI.cpp @@ -80,11 +80,11 @@ void Host_RefreshDSPDebuggerWindow() } static Common::Event updateMainFrameEvent; -void Host_Message(int Id) +void Host_Message(HostMessageID id) { - if (Id == WM_USER_STOP) + if (id == HostMessageID::WMUserStop) s_running.Clear(); - if (Id == WM_USER_JOB_DISPATCH || Id == WM_USER_STOP) + if (id == HostMessageID::WMUserJobDispatch || id == HostMessageID::WMUserStop) updateMainFrameEvent.Set(); } |
