diff options
author | md5 | 2011-04-15 11:13:35 +0300 |
---|---|---|
committer | md5 | 2011-04-15 11:20:05 +0300 |
commit | 6c4f09c058d15e18e4e95d9eeda60719a35c2343 (patch) | |
tree | b53472a6177ae0c6cdad442fb28554472bbb34e1 /engines | |
parent | d23150ff786dcaafd7025804201530b421b41247 (diff) | |
download | scummvm-rg350-6c4f09c058d15e18e4e95d9eeda60719a35c2343.tar.gz scummvm-rg350-6c4f09c058d15e18e4e95d9eeda60719a35c2343.tar.bz2 scummvm-rg350-6c4f09c058d15e18e4e95d9eeda60719a35c2343.zip |
SCI: Silenced the warning for kMacPlatform(1)
This warning produces a lot of spam in the console (e.g. it pops up
whenever the icon bar is opened in Dr. Brain Mac), thus it has been
silenced
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/engine/kmisc.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/engine/kmisc.cpp b/engines/sci/engine/kmisc.cpp index 907e0ba2e4..80425224bf 100644 --- a/engines/sci/engine/kmisc.cpp +++ b/engines/sci/engine/kmisc.cpp @@ -411,7 +411,8 @@ reg_t kMacPlatform(EngineState *s, int argc, reg_t *argv) { return kIconBar(s, argc - 1, argv + 1); case 7: // Unknown, but always return -1 return SIGNAL_REG; - case 1: // Unknown, calls QuickDraw region functions (KQ5, QFG1VGA) + case 1: // Unknown, calls QuickDraw region functions (KQ5, QFG1VGA, Dr. Brain 1) + break; // removed warning, as it produces a lot of spam in the console case 2: // Unknown, "UseNextWaitEvent" (Various) case 3: // Unknown, "ProcessOpenDocuments" (Various) case 5: // Unknown, plays a sound (KQ7) |