diff options
author | Sven Hesse | 2009-06-15 23:10:10 +0000 |
---|---|---|
committer | Sven Hesse | 2009-06-15 23:10:10 +0000 |
commit | 221953344175d81396675f96c3f51e3d52491cbb (patch) | |
tree | 180245f4d57110d836c529e8ba5239b7df1130bc | |
parent | 5c58b9a3a4a8848474aba18c02c0da997fb138a2 (diff) | |
download | scummvm-rg350-221953344175d81396675f96c3f51e3d52491cbb.tar.gz scummvm-rg350-221953344175d81396675f96c3f51e3d52491cbb.tar.bz2 scummvm-rg350-221953344175d81396675f96c3f51e3d52491cbb.zip |
Remove some now superfluous comments
svn-id: r41571
-rw-r--r-- | engines/gob/parse.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/gob/parse.cpp b/engines/gob/parse.cpp index 50edae1c8a..420fdebd29 100644 --- a/engines/gob/parse.cpp +++ b/engines/gob/parse.cpp @@ -239,10 +239,10 @@ void Parse::printExpr_internal(char stopToken) { } break; - case OP_ARRAY_INT8: // uint8 array access - case OP_ARRAY_INT32: // uint32 array access - case OP_ARRAY_INT16: // uint16 array access - case OP_ARRAY_STR: // string array access + case OP_ARRAY_INT8: // int8 array access + case OP_ARRAY_INT32: // int32 array access + case OP_ARRAY_INT16: // int16 array access + case OP_ARRAY_STR: // string array access debugN(5, "\n"); if (operation == OP_ARRAY_STR) debugN(5, "(&"); |