Fix warning caused by not handling all enum values in a switch (caused by the newly added EVENT_PREDICTIVE_DIALOG constant)

svn-id: r27008
This commit is contained in:
Max Horn 2007-05-29 21:35:13 +00:00
parent 137140b7e9
commit ed02fb1443

View File

@ -309,6 +309,8 @@ void NewGui::runLoop() {
case Common::EVENT_SCREEN_CHANGED:
screenChange();
break;
default:
break;
}
}