diff options
author | Bastien Bouclet | 2017-09-09 16:43:55 +0200 |
---|---|---|
committer | Bastien Bouclet | 2017-11-19 16:12:50 +0100 |
commit | 8beb519c5ea2964ce409aabbe03b54afe37e0ac1 (patch) | |
tree | 7d33e93682ddba69ffdbf3625f9a6eab2c1df98f /backends/platform | |
parent | 7689fd7308020aac0bb788cafc524bd7f01077f4 (diff) | |
download | scummvm-rg350-8beb519c5ea2964ce409aabbe03b54afe37e0ac1.tar.gz scummvm-rg350-8beb519c5ea2964ce409aabbe03b54afe37e0ac1.tar.bz2 scummvm-rg350-8beb519c5ea2964ce409aabbe03b54afe37e0ac1.zip |
EVENTS: Rename synthetic to kbdRepeat
Diffstat (limited to 'backends/platform')
-rw-r--r-- | backends/platform/android/events.cpp | 2 | ||||
-rw-r--r-- | backends/platform/tizen/form.cpp | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/backends/platform/android/events.cpp b/backends/platform/android/events.cpp index b146945a01..d13d381f95 100644 --- a/backends/platform/android/events.cpp +++ b/backends/platform/android/events.cpp @@ -443,7 +443,7 @@ void OSystem_Android::pushEvent(int type, int arg1, int arg2, int arg3, } if (arg5 > 0) - e.synthetic = true; + e.kbdRepeat = true; // map special keys to 'our' ascii codes switch (e.kbd.keycode) { diff --git a/backends/platform/tizen/form.cpp b/backends/platform/tizen/form.cpp index 2a9a3967cc..22e15f61c4 100644 --- a/backends/platform/tizen/form.cpp +++ b/backends/platform/tizen/form.cpp @@ -243,7 +243,6 @@ void TizenAppForm::pushEvent(Common::EventType type, const Point ¤tPositio void TizenAppForm::pushKey(Common::KeyCode keycode) { if (_eventQueueLock) { Common::Event e; - e.synthetic = false; e.kbd.keycode = keycode; e.kbd.ascii = keycode; e.kbd.flags = 0; |