diff options
author | Matthew Hoops | 2011-02-12 18:33:52 -0500 |
---|---|---|
committer | Matthew Hoops | 2011-02-12 18:33:52 -0500 |
commit | 2c9d30e7370dabf2132dba8631748d8841e61517 (patch) | |
tree | 0abe15043d71a12b851e90082452d509a2d56c4a | |
parent | 15b3bffb7ff8f0ee8091e62cddb1682f2bf8d2d2 (diff) | |
download | scummvm-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
-rw-r--r-- | engines/sci/console.cpp | 2 |
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]); } |