aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorMax Horn2007-05-29 21:35:13 +0000
committerMax Horn2007-05-29 21:35:13 +0000
commited02fb1443c39d04de56ace9f7eb9bfce6b3e24c (patch)
tree439f6360abd75bbebc74afc9048f6f56dff86697 /gui
parent137140b7e98be5ba09a18af148cc87f1c226d74a (diff)
downloadscummvm-rg350-ed02fb1443c39d04de56ace9f7eb9bfce6b3e24c.tar.gz
scummvm-rg350-ed02fb1443c39d04de56ace9f7eb9bfce6b3e24c.tar.bz2
scummvm-rg350-ed02fb1443c39d04de56ace9f7eb9bfce6b3e24c.zip
Fix warning caused by not handling all enum values in a switch (caused by the newly added EVENT_PREDICTIVE_DIALOG constant)
svn-id: r27008
Diffstat (limited to 'gui')
-rw-r--r--gui/newgui.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/newgui.cpp b/gui/newgui.cpp
index 948c7fa56f..9166eadaf4 100644
--- a/gui/newgui.cpp
+++ b/gui/newgui.cpp
@@ -309,6 +309,8 @@ void NewGui::runLoop() {
case Common::EVENT_SCREEN_CHANGED:
screenChange();
break;
+ default:
+ break;
}
}