Silence MSVC warning about empty switch statement

svn-id: r34266
This commit is contained in:
Filippos Karapetis 2008-09-01 23:37:24 +00:00
parent 3d8e7580a0
commit ac38ca32b9

View file

@ -843,11 +843,13 @@ void ScummEngine_vCUPhe::parseEvents() {
Common::Event event;
while (_eventMan->pollEvent(event)) {
#if 0
switch (event.type) {
default:
break;
}
#endif
}
}