diff options
author | Johannes Schickel | 2009-05-17 21:55:24 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-05-17 21:55:24 +0000 |
commit | 1c86e186806d2ab66da377a642fc36627ba3e5d7 (patch) | |
tree | 84069db7ad061ca31e5705d540619bc90a7396d0 /engines | |
parent | 76285301aa191bcfc69aa6ae9b5caafc4eed0102 (diff) | |
download | scummvm-rg350-1c86e186806d2ab66da377a642fc36627ba3e5d7.tar.gz scummvm-rg350-1c86e186806d2ab66da377a642fc36627ba3e5d7.tar.bz2 scummvm-rg350-1c86e186806d2ab66da377a642fc36627ba3e5d7.zip |
Disable CD audio for PC98 by default.
svn-id: r40658
Diffstat (limited to 'engines')
-rw-r--r-- | engines/kyra/kyra_v1.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/kyra/kyra_v1.cpp b/engines/kyra/kyra_v1.cpp index 80be55374a..2661217cc7 100644 --- a/engines/kyra/kyra_v1.cpp +++ b/engines/kyra/kyra_v1.cpp @@ -319,8 +319,8 @@ int KyraEngine_v1::checkInput(Button *buttonList, bool mainLoop) { break; } - // When we got an keypress we might handle, break the event loop - // and pass it to GUI code. + // When we got an keypress, which we might need to handle, + // break the event loop and pass it to GUI code. if (keys) breakLoop = true; } @@ -482,7 +482,7 @@ void KyraEngine_v1::delayWithTicks(int ticks) { } void KyraEngine_v1::registerDefaultSettings() { - if (_flags.platform == Common::kPlatformFMTowns || _flags.platform == Common::kPlatformPC98) + if (_flags.platform == Common::kPlatformFMTowns) ConfMan.registerDefault("cdaudio", true); if (_flags.fanLang != Common::UNK_LANG) { // HACK/WORKAROUND: Since we can't use registerDefault here to overwrite |