diff options
author | Johannes Schickel | 2012-02-19 05:18:47 +0100 |
---|---|---|
committer | Johannes Schickel | 2012-02-19 05:21:17 +0100 |
commit | ab4420b3ca591f707ea831cb077e88b800986471 (patch) | |
tree | 8728eb7e0b94e442e56281fcb22c51cb7591c3d1 /backends | |
parent | ffaa8612c3024f2ec97692015553dd846e31d830 (diff) | |
download | scummvm-rg350-ab4420b3ca591f707ea831cb077e88b800986471.tar.gz scummvm-rg350-ab4420b3ca591f707ea831cb077e88b800986471.tar.bz2 scummvm-rg350-ab4420b3ca591f707ea831cb077e88b800986471.zip |
IPHONE: Take advantage of Common::EVENT_INVALID.
Diffstat (limited to 'backends')
-rw-r--r-- | backends/platform/iphone/osys_events.cpp | 4 | ||||
-rw-r--r-- | backends/platform/iphone/osys_main.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/backends/platform/iphone/osys_events.cpp b/backends/platform/iphone/osys_events.cpp index f6dae2f519..a3075e23cb 100644 --- a/backends/platform/iphone/osys_events.cpp +++ b/backends/platform/iphone/osys_events.cpp @@ -40,9 +40,9 @@ bool OSystem_IPHONE::pollEvent(Common::Event &event) { _timerCallbackNext = curTime + _timerCallbackTimer; } - if (_queuedInputEvent.type != (Common::EventType)0 && curTime >= _queuedEventTime) { + if (_queuedInputEvent.type != Common::EVENT_INVALID && curTime >= _queuedEventTime) { event = _queuedInputEvent; - _queuedInputEvent.type = (Common::EventType)0; + _queuedInputEvent.type = Common::EVENT_INVALID; return true; } diff --git a/backends/platform/iphone/osys_main.cpp b/backends/platform/iphone/osys_main.cpp index 4bc567c39d..b0f475b6ea 100644 --- a/backends/platform/iphone/osys_main.cpp +++ b/backends/platform/iphone/osys_main.cpp @@ -62,7 +62,7 @@ OSystem_IPHONE::OSystem_IPHONE() : _mouseDirty(false), _timeSuspended(0), _lastDragPosX(-1), _lastDragPosY(-1), _screenChangeCount(0), _overlayHeight(0), _overlayWidth(0), _overlayBuffer(0) { - _queuedInputEvent.type = (Common::EventType)0; + _queuedInputEvent.type = Common::EVENT_INVALID; _lastDrawnMouseRect = Common::Rect(0, 0, 0, 0); _touchpadModeEnabled = !iPhone_isHighResDevice(); |