diff options
author | Johannes Schickel | 2012-09-04 19:41:58 +0200 |
---|---|---|
committer | Johannes Schickel | 2012-09-04 19:41:58 +0200 |
commit | 9989a4f3daba891326810d7ae620cd75d97521f1 (patch) | |
tree | f1cd3b4aee79962f8c4c6248458b5e659eda0542 /engines/wintermute | |
parent | 4cfd906cec08fec8c27f33c1a54651271a4fb104 (diff) | |
download | scummvm-rg350-9989a4f3daba891326810d7ae620cd75d97521f1.tar.gz scummvm-rg350-9989a4f3daba891326810d7ae620cd75d97521f1.tar.bz2 scummvm-rg350-9989a4f3daba891326810d7ae620cd75d97521f1.zip |
WINTERMUTE: Remove extra semicolon.
Diffstat (limited to 'engines/wintermute')
-rw-r--r-- | engines/wintermute/base/base_keyboard_state.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wintermute/base/base_keyboard_state.cpp b/engines/wintermute/base/base_keyboard_state.cpp index 63c0a873ce..c8dc02c49a 100644 --- a/engines/wintermute/base/base_keyboard_state.cpp +++ b/engines/wintermute/base/base_keyboard_state.cpp @@ -277,7 +277,7 @@ enum VKeyCodes { VK_UP = 38,
VK_RIGHT = 39,
VK_DOWN = 40
-};
+}
//////////////////////////////////////////////////////////////////////////
Common::KeyCode BaseKeyboardState::vKeyToKeyCode(uint32 vkey) {
|