diff options
author | Christopher Page | 2008-07-13 20:41:39 +0000 |
---|---|---|
committer | Christopher Page | 2008-07-13 20:41:39 +0000 |
commit | a6e1d6bd3dcdc1fae7832ffe26b4d774ec1fe6a3 (patch) | |
tree | 612ea0f89559780287b05b6cb122f681c290689d /gui | |
parent | e9c6b03fc73ad5d556eb56afed6e55ef1b0bef67 (diff) | |
download | scummvm-rg350-a6e1d6bd3dcdc1fae7832ffe26b4d774ec1fe6a3.tar.gz scummvm-rg350-a6e1d6bd3dcdc1fae7832ffe26b4d774ec1fe6a3.tar.bz2 scummvm-rg350-a6e1d6bd3dcdc1fae7832ffe26b4d774ec1fe6a3.zip |
SKY works with the new GMM implementation, also updated gui/newgui.cpp and prevented pushEvent from pushing more than one EVENT_QUIT into the artificialEventQueue
svn-id: r33041
Diffstat (limited to 'gui')
-rw-r--r-- | gui/newgui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/newgui.cpp b/gui/newgui.cpp index 9f1ff51b14..b892fe076a 100644 --- a/gui/newgui.cpp +++ b/gui/newgui.cpp @@ -256,7 +256,7 @@ void NewGui::runLoop() { Common::Event event; while (eventMan->pollEvent(event)) { - if (activeDialog != getTopDialog() && event.type != Common::EVENT_QUIT && event.type != Common::EVENT_SCREEN_CHANGED) + if (activeDialog != getTopDialog() && event.type != Common::EVENT_SCREEN_CHANGED) continue; Common::Point mouse(event.mouse.x - activeDialog->_x, event.mouse.y - activeDialog->_y); |