diff options
author | Johannes Schickel | 2011-03-08 20:11:13 +0100 |
---|---|---|
committer | Johannes Schickel | 2011-03-08 20:11:13 +0100 |
commit | 0e7dc36792e8472f823af56a43f6d75aba3db29b (patch) | |
tree | 8f6c136aff0f66d6fab982c972a41f457b56af26 | |
parent | aebd9c6ea03593abb409a5eb2e9ef15b5cb42c72 (diff) | |
download | scummvm-rg350-0e7dc36792e8472f823af56a43f6d75aba3db29b.tar.gz scummvm-rg350-0e7dc36792e8472f823af56a43f6d75aba3db29b.tar.bz2 scummvm-rg350-0e7dc36792e8472f823af56a43f6d75aba3db29b.zip |
DRASCULA: Fix a style related warning for WinCE specific code.
-rw-r--r-- | engines/drascula/drascula.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/drascula/drascula.cpp b/engines/drascula/drascula.cpp index e84e80ccd3..b59ab6f566 100644 --- a/engines/drascula/drascula.cpp +++ b/engines/drascula/drascula.cpp @@ -512,7 +512,7 @@ bool DrasculaEngine::runCurrentChapter() { checkObjects(); #ifdef _WIN32_WCE - if (rightMouseButton) + if (rightMouseButton) { if (_menuScreen) { #else if (rightMouseButton == 1 && _menuScreen) { @@ -570,6 +570,9 @@ bool DrasculaEngine::runCurrentChapter() { #endif selectVerb(kVerbNone); } +#ifdef _WIN32_WCE + } +#endif if (leftMouseButton == 1 && _menuBar) { delay(100); |