[Scummvm-git-logs] scummvm master -> fad20484cbec63602f2eec38f1e1e1e055674243
sluicebox
22204938+sluicebox at users.noreply.github.com
Tue Jan 28 03:09:20 UTC 2020
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
fad20484cb SCI32: Ignore invalid LIGHTHOUSE German audio map
Commit: fad20484cbec63602f2eec38f1e1e1e055674243
https://github.com/scummvm/scummvm/commit/fad20484cbec63602f2eec38f1e1e1e055674243
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2020-01-27T19:08:51-08:00
Commit Message:
SCI32: Ignore invalid LIGHTHOUSE German audio map
Changed paths:
engines/sci/resource_audio.cpp
diff --git a/engines/sci/resource_audio.cpp b/engines/sci/resource_audio.cpp
index 41c213f..4bc417a 100644
--- a/engines/sci/resource_audio.cpp
+++ b/engines/sci/resource_audio.cpp
@@ -532,6 +532,15 @@ int ResourceManager::readAudioMapSCI11(IntMapResourceSource *map) {
continue;
}
}
+
+ // Lighthouse German has invalid audio36 map entries for
+ // content that was cut from the game. These resources
+ // existed in the English version even though they were
+ // inaccessible.
+ if (g_sci->getGameId() == GID_LIGHTHOUSE &&
+ map->_mapNumber == 800) {
+ continue;
+ }
// LSL7 French has an invalid audio36 map entry for a narrator
// message that was cut from the game. This resource existed
More information about the Scummvm-git-logs
mailing list