mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 00:15:30 +00:00
SCI: Don't limit the number of resources to 999 in hexgrep
This commit is contained in:
parent
15b3bffb7f
commit
2c9d30e737
@ -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]);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user