aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMatthew Hoops2011-02-12 18:33:52 -0500
committerMatthew Hoops2011-02-12 18:33:52 -0500
commit2c9d30e7370dabf2132dba8631748d8841e61517 (patch)
tree0abe15043d71a12b851e90082452d509a2d56c4a /engines
parent15b3bffb7ff8f0ee8091e62cddb1682f2bf8d2d2 (diff)
downloadscummvm-rg350-2c9d30e7370dabf2132dba8631748d8841e61517.tar.gz
scummvm-rg350-2c9d30e7370dabf2132dba8631748d8841e61517.tar.bz2
scummvm-rg350-2c9d30e7370dabf2132dba8631748d8841e61517.zip
SCI: Don't limit the number of resources to 999 in hexgrep
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/console.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp
index 9510ed0afb..d77ac858c8 100644
--- a/engines/sci/console.cpp
+++ b/engines/sci/console.cpp
@@ -792,7 +792,7 @@ bool Console::cmdHexgrep(int argc, const char **argv) {
if (!scumm_stricmp(argv[2], "all")) {
resNumber = 0;
- resMax = 999;
+ resMax = 65535;
} else {
resNumber = resMax = atoi(argv[2]);
}