mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 12:09:15 +00:00
SCI: Fixed version and scene transitions for SCI1 Mac games
This commit is contained in:
parent
fd2c39591f
commit
9e1245c420
@ -2275,6 +2275,9 @@ void ResourceManager::detectSciVersion() {
|
||||
// Amiga SCI1 middle games are actually SCI1 late
|
||||
if (_viewType == kViewAmiga || _viewType == kViewAmiga64)
|
||||
s_sciVersion = SCI_VERSION_1_LATE;
|
||||
// Same goes for Mac SCI1 middle games
|
||||
if (g_sci && g_sci->getPlatform() == Common::kPlatformMacintosh)
|
||||
s_sciVersion = SCI_VERSION_1_LATE;
|
||||
return;
|
||||
case kResVersionSci1Late:
|
||||
if (_volVersion == kResVersionSci11) {
|
||||
|
Loading…
Reference in New Issue
Block a user