mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 21:59:17 +00:00
SCUMM: Backyard Baseball 2003 uses a unique variable for the subtitle setting, fixes changing subtitles via ScummVM.
This commit is contained in:
parent
403b646c13
commit
4aec92e5e9
@ -382,7 +382,7 @@ static const GameSettings gameVariantsTable[] = {
|
||||
{"pjgames", 0, 0, GID_HEGAME, 6, 100, MDT_NONE, GF_USE_KEY | GF_HE_LOCALIZED | GF_16BIT_COLOR, UNK, GUIO3(GUIO_NOLAUNCHLOAD, GUIO_NOMIDI, GUIO_NOASPECT)},
|
||||
|
||||
// Added the use of bink videos
|
||||
{"Baseball2003", 0, 0, GID_HEGAME, 6, 100, MDT_NONE, GF_USE_KEY | GF_16BIT_COLOR, UNK, GUIO3(GUIO_NOLAUNCHLOAD, GUIO_NOMIDI, GUIO_NOASPECT)},
|
||||
{"Baseball2003", 0, 0, GID_BASEBALL2003, 6, 100, MDT_NONE, GF_USE_KEY | GF_16BIT_COLOR, UNK, GUIO3(GUIO_NOLAUNCHLOAD, GUIO_NOMIDI, GUIO_NOASPECT)},
|
||||
{"basketball", 0, 0, GID_BASKETBALL, 6, 100, MDT_NONE, GF_USE_KEY| GF_16BIT_COLOR, UNK, GUIO3(GUIO_NOLAUNCHLOAD, GUIO_NOMIDI, GUIO_NOASPECT)},
|
||||
{"football2002", 0, 0, GID_FOOTBALL, 6, 100, MDT_NONE, GF_USE_KEY | GF_16BIT_COLOR, UNK, GUIO3(GUIO_NOLAUNCHLOAD, GUIO_NOMIDI, GUIO_NOASPECT)},
|
||||
{"Soccer2004", 0, 0, GID_SOCCER2004, 6, 100, MDT_NONE, GF_USE_KEY | GF_16BIT_COLOR, UNK, GUIO3(GUIO_NOLAUNCHLOAD, GUIO_NOMIDI, GUIO_NOASPECT)},
|
||||
|
@ -1917,6 +1917,13 @@ void ScummEngine::syncSoundSettings() {
|
||||
if (VAR_CHARINC != 0xFF)
|
||||
VAR(VAR_CHARINC) = _defaultTalkDelay;
|
||||
}
|
||||
|
||||
// Backyard Baseball 2003 uses a unique subtitle variable,
|
||||
// rather than VAR_SUBTITLES
|
||||
if (_game.id == GID_BASEBALL2003) {
|
||||
_scummVars[632] = ConfMan.getBool("subtitles");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void ScummEngine::setTalkSpeed(int talkspeed) {
|
||||
|
@ -245,6 +245,7 @@ enum ScummGameId {
|
||||
GID_SOCCERMLS,
|
||||
GID_SOCCER2004,
|
||||
GID_BASEBALL2001,
|
||||
GID_BASEBALL2003,
|
||||
GID_BASKETBALL,
|
||||
GID_MOONBASE,
|
||||
GID_HECUP // CUP demos
|
||||
|
Loading…
Reference in New Issue
Block a user