SCI: The heap was a separate resource in SCI1.1 - SCI2.1 games only. It was later

merged into the script files again in SCI3

svn-id: r54279
This commit is contained in:
Filippos Karapetis 2010-11-17 08:30:08 +00:00
parent 553d571c50
commit 0470e47145
3 changed files with 7 additions and 5 deletions

View file

@ -834,7 +834,7 @@ bool Console::cmdHexgrep(int argc, const char **argv) {
}
bool Console::cmdVerifyScripts(int argc, const char **argv) {
if (getSciVersion() < SCI_VERSION_1_1) {
if (getSciVersion() < SCI_VERSION_1_1 || getSciVersion() == SCI_VERSION_3) {
DebugPrintf("This script check is only meant for SCI1.1-SCI2.1 games\n");
return true;
}