mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-31 16:03:24 +00:00
Adjust version setting for Macintosh versions of HE80+ games, which is checked by water
svn-id: r21228
This commit is contained in:
parent
66730f3b6b
commit
e94aa88ece
@ -622,8 +622,13 @@ void ScummEngine_v72he::initScummVars() {
|
||||
void ScummEngine_v80he::initScummVars() {
|
||||
ScummEngine_v72he::initScummVars();
|
||||
|
||||
VAR(VAR_PLATFORM) = (_game.platform == Common::kPlatformMacintosh) ? 2 : 1;
|
||||
VAR(VAR_WINDOWS_VERSION) = 40;
|
||||
if (_game.platform == Common::kPlatformMacintosh) {
|
||||
VAR(VAR_PLATFORM) = 2;
|
||||
VAR(VAR_WINDOWS_VERSION) = 70;
|
||||
} else {
|
||||
VAR(VAR_PLATFORM) = 1;
|
||||
VAR(VAR_WINDOWS_VERSION) = 40;
|
||||
}
|
||||
VAR(VAR_COLOR_DEPTH) = 256;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user