diff options
author | Colin Snover | 2017-11-08 16:46:05 -0600 |
---|---|---|
committer | Colin Snover | 2017-11-10 09:57:03 -0600 |
commit | 51329c0dc6ee56d8b843f058aa3257ec9f30b71a (patch) | |
tree | 85a171532e169bcce6f34a8c3d06555863ab4d0d /engines/gob | |
parent | 2de83e09374abd10700e5f2bc4671318f182980b (diff) | |
download | scummvm-rg350-51329c0dc6ee56d8b843f058aa3257ec9f30b71a.tar.gz scummvm-rg350-51329c0dc6ee56d8b843f058aa3257ec9f30b71a.tar.bz2 scummvm-rg350-51329c0dc6ee56d8b843f058aa3257ec9f30b71a.zip |
ALL: Fix misuse of comma operator
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/util.cpp b/engines/gob/util.cpp index 19e6e35e0b..6bb4274421 100644 --- a/engines/gob/util.cpp +++ b/engines/gob/util.cpp @@ -37,7 +37,7 @@ namespace Gob { Util::Util(GobEngine *vm) : _vm(vm) { - _mouseButtons = kMouseButtonsNone, + _mouseButtons = kMouseButtonsNone; _keyBufferHead = 0; _keyBufferTail = 0; _fastMode = 0; |