diff options
Diffstat (limited to 'backends/platform/iphone/osys_events.cpp')
| -rw-r--r-- | backends/platform/iphone/osys_events.cpp | 4 | 
1 files changed, 2 insertions, 2 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;  	}  | 
