aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorJonathan Gray2003-05-14 12:32:40 +0000
committerJonathan Gray2003-05-14 12:32:40 +0000
commit50a857a40694daec8c63d4ba480d298d65c71445 (patch)
tree9052012652a12169fb63861f8f965f5474002ebe /scumm
parentd8048837f396cebafc9cf5474dc9d358a2a3a349 (diff)
downloadscummvm-rg350-50a857a40694daec8c63d4ba480d298d65c71445.tar.gz
scummvm-rg350-50a857a40694daec8c63d4ba480d298d65c71445.tar.bz2
scummvm-rg350-50a857a40694daec8c63d4ba480d298d65c71445.zip
make gcc with extra extra warnings happy
svn-id: r7501
Diffstat (limited to 'scumm')
-rw-r--r--scumm/script_v2.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp
index bdb1577dcb..9d7c8b1ed4 100644
--- a/scumm/script_v2.cpp
+++ b/scumm/script_v2.cpp
@@ -752,7 +752,8 @@ void Scumm_v2::o2_verbOps() {
int x = fetchScriptByte() << 3;
int y = fetchScriptByte() << 3;
slot = getVarOrDirectByte(0x80) + 1;
- int unk = fetchScriptByte(); // ?
+ // int unk = fetchScriptByte(); // ?
+ fetchScriptByte();
VerbSlot *vs;
assert(0 < slot && slot < _maxVerbs);