Correct incorrect smush filename in Macintosh FT demo
svn-id: r13098
This commit is contained in:
parent
80fd4bd4f0
commit
807bc5e0fa
1 changed files with 6 additions and 1 deletions
|
@ -2505,7 +2505,12 @@ void ScummEngine_v6::o6_kernelSetFunctions() {
|
|||
if (args[1] == 0) {
|
||||
SmushPlayer *sp = new SmushPlayer(this, speed);
|
||||
|
||||
sp->play((char *)getStringAddressVar(VAR_VIDEONAME), getGameDataPath());
|
||||
// Correct incorrect smush filename in Macintosh FT demo
|
||||
if ((_gameId == GID_FT) && (_features & GF_DEMO) && (_features & GF_MACINTOSH) &&
|
||||
(strcmp((char *)getStringAddressVar(VAR_VIDEONAME), "jumpgorge.san") == 0))
|
||||
sp->play("jumpgorg.san", getGameDataPath());
|
||||
else
|
||||
sp->play((char *)getStringAddressVar(VAR_VIDEONAME), getGameDataPath());
|
||||
delete sp;
|
||||
} else if (_gameId == GID_FT) {
|
||||
const int insaneVarNum = ((_features & GF_DEMO) && (_features & GF_PC))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue