diff options
author | Travis Howell | 2007-08-09 05:01:10 +0000 |
---|---|---|
committer | Travis Howell | 2007-08-09 05:01:10 +0000 |
commit | 1643dd98bc0e048c77148317b6a7af7cfd9a1207 (patch) | |
tree | 2d5b14694cc9b388489d12ad4872b4842b024a8c | |
parent | 44405b664f1da08020cee6c2017f64cc7abb4254 (diff) | |
download | scummvm-rg350-1643dd98bc0e048c77148317b6a7af7cfd9a1207.tar.gz scummvm-rg350-1643dd98bc0e048c77148317b6a7af7cfd9a1207.tar.bz2 scummvm-rg350-1643dd98bc0e048c77148317b6a7af7cfd9a1207.zip |
Remove excess ;
svn-id: r28499
-rw-r--r-- | engines/gob/game_v2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/game_v2.cpp b/engines/gob/game_v2.cpp index 7e87b9e8f8..8a528a96f5 100644 --- a/engines/gob/game_v2.cpp +++ b/engines/gob/game_v2.cpp @@ -1259,7 +1259,7 @@ int16 Game_v2::multiEdit(int16 time, int16 index, int16 *pCurPos, if ((collArea->left > _vm->_global->_inter_mouseX) || (collArea->right < _vm->_global->_inter_mouseX) || (collArea->top > _vm->_global->_inter_mouseY) || - (collArea->bottom < _vm->_global->_inter_mouseY)); + (collArea->bottom < _vm->_global->_inter_mouseY)) continue; if ((collArea->id & 0xF000)) |