Fix "ripburger attacks Malcom" cutscene, by disabling pseudoRooms for V7 games.
They arn't used in FT at least, so I'm going to assume this could also fix the Dig. svn-id: r5073
This commit is contained in:
parent
b7e83decd7
commit
312ff21081
2 changed files with 2 additions and 2 deletions
|
@ -470,7 +470,7 @@ void Scumm::ensureResourceLoaded(int type, int i)
|
|||
|
||||
debug(9, "ensureResourceLoaded(%s,%d)", resTypeFromId(type), i);
|
||||
|
||||
if (type == rtRoom && i > 127) {
|
||||
if (type == rtRoom && i > 127 && !(_features & GF_AFTER_V7)) {
|
||||
i = _resourceMapper[i & 127];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue