aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/parse.h
diff options
context:
space:
mode:
authorSven Hesse2009-04-07 16:53:38 +0000
committerSven Hesse2009-04-07 16:53:38 +0000
commitdc8e67900a365ba7c6a50336dce8b67a099cdf6e (patch)
treed129b52626c24dd2201cb2e2e99f6a60213b9cf6 /engines/gob/parse.h
parent2d83233503ea4b8cbf2b27a4e89acca8f1845dd8 (diff)
downloadscummvm-rg350-dc8e67900a365ba7c6a50336dce8b67a099cdf6e.tar.gz
scummvm-rg350-dc8e67900a365ba7c6a50336dce8b67a099cdf6e.tar.bz2
scummvm-rg350-dc8e67900a365ba7c6a50336dce8b67a099cdf6e.zip
Fixing the parser-related FIXMEs. 17 and 18 are int16 and int8, respectively
svn-id: r39893
Diffstat (limited to 'engines/gob/parse.h')
-rw-r--r--engines/gob/parse.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/engines/gob/parse.h b/engines/gob/parse.h
index 689ef06eae..feafbaa455 100644
--- a/engines/gob/parse.h
+++ b/engines/gob/parse.h
@@ -46,13 +46,8 @@ enum {
OP_ARRAY_UINT8 = 16,
- // FIXME: OP_LOAD_VAR_UINT16 comment says "uint16 variable load" in
- // Parse::printExpr_internal, and does that in Parse_v2::parseExpr,
- // but reads int8 in Parse_v2::parseValExpr
- OP_LOAD_VAR_UINT16 = 17,
- // FIXME: OP_LOAD_VAR_UINT8 comment says "uint8 variable load" in
- // Parse::printExpr_internal, but reads int8 in Parse_v2::parseValExpr
- OP_LOAD_VAR_UINT8 = 18,
+ OP_LOAD_VAR_INT16 = 17,
+ OP_LOAD_VAR_INT8 = 18,
OP_LOAD_IMM_INT32 = 19,
OP_LOAD_IMM_INT16 = 20,
OP_LOAD_IMM_INT8 = 21,