EventThread: Fix mouse cursor not being hidden

This commit is contained in:
Jonas Kulla 2016-02-24 17:44:42 +01:00 committed by Mathew Velasquez
parent 882856c8d8
commit c16f20527e

View file

@ -132,7 +132,9 @@ void EventThread::process(RGSSThreadData &rtData)
bool displayingFPS = false;
bool cursorInWindow = false;
bool windowFocused = false;
/* SDL doesn't send an initial FOCUS_GAINED event */
bool windowFocused = true;
bool terminate = false;