diff options
| author | Léo Lam <leo@innovatetechnologi.es> | 2018-05-28 20:57:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-28 20:57:34 +0200 |
| commit | f05eb10026fe12752617c7648389cac2cd721c25 (patch) | |
| tree | acaaf76a41bab0c65bfc73d8c4afcbf270fff350 /Source/Android/jni/MainAndroid.cpp | |
| parent | a9f022a06770b7236ac6037ec0cb36c08222424e (diff) | |
| parent | 4288bfe0f9c189de5fd3a298f24ca51e171b4157 (diff) | |
Merge pull request #7003 from lioncash/host
Common: Move host communication enum to Host.h
Diffstat (limited to 'Source/Android/jni/MainAndroid.cpp')
| -rw-r--r-- | Source/Android/jni/MainAndroid.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 47a653d927..62d31580e7 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -87,13 +87,13 @@ void Host_RefreshDSPDebuggerWindow() { } -void Host_Message(int Id) +void Host_Message(HostMessageID id) { - if (Id == WM_USER_JOB_DISPATCH) + if (id == HostMessageID::WMUserJobDispatch) { s_update_main_frame_event.Set(); } - else if (Id == WM_USER_STOP) + else if (id == HostMessageID::WMUserStop) { s_have_wm_user_stop = true; if (Core::IsRunning()) |
