diff options
author | Johannes Schickel | 2009-05-17 22:49:25 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-05-17 22:49:25 +0000 |
commit | 380231fc3be9b62b748d10fd2a6d339af377019c (patch) | |
tree | d95e632041d6f17779807ba1947089a18fabfbc1 /engines/kyra | |
parent | bfe63b64a3fe50e2fd7a7699555d258dcb84cda8 (diff) | |
download | scummvm-rg350-380231fc3be9b62b748d10fd2a6d339af377019c.tar.gz scummvm-rg350-380231fc3be9b62b748d10fd2a6d339af377019c.tar.bz2 scummvm-rg350-380231fc3be9b62b748d10fd2a6d339af377019c.zip |
Only set 'cdaudio' config entry, when FM-Towns version is present.
svn-id: r40664
Diffstat (limited to 'engines/kyra')
-rw-r--r-- | engines/kyra/kyra_v1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/kyra_v1.cpp b/engines/kyra/kyra_v1.cpp index 2999a387a8..9f3056e422 100644 --- a/engines/kyra/kyra_v1.cpp +++ b/engines/kyra/kyra_v1.cpp @@ -526,7 +526,7 @@ void KyraEngine_v1::writeSettings() { ConfMan.setInt("walkspeed", _configWalkspeed); ConfMan.setBool("music_mute", _configMusic == 0); - if (_flags.gameID != GI_KYRA3) + if (_flags.platform == Common::kPlatformFMTowns) ConfMan.setBool("cdaudio", _configMusic == 2); ConfMan.setBool("sfx_mute", _configSounds == 0); |