diff options
author | uruk | 2014-04-12 23:59:41 +0200 |
---|---|---|
committer | uruk | 2014-04-12 23:59:41 +0200 |
commit | 85d8dc72452ab1c409ac2b480df3129f17cd7e08 (patch) | |
tree | 8df22cf5ab0fe7023e07b3890a61709e177556c5 /engines | |
parent | fc131804652aee81cbc434d62d8914b0959e70ad (diff) | |
download | scummvm-rg350-85d8dc72452ab1c409ac2b480df3129f17cd7e08.tar.gz scummvm-rg350-85d8dc72452ab1c409ac2b480df3129f17cd7e08.tar.bz2 scummvm-rg350-85d8dc72452ab1c409ac2b480df3129f17cd7e08.zip |
AVALANCHE: Remove useless warnings.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/avalanche/avalot.cpp | 5 | ||||
-rw-r--r-- | engines/avalanche/dialogs.cpp | 5 |
2 files changed, 1 insertions, 9 deletions
diff --git a/engines/avalanche/avalot.cpp b/engines/avalanche/avalot.cpp index 4f29da78d9..93b583bac1 100644 --- a/engines/avalanche/avalot.cpp +++ b/engines/avalanche/avalot.cpp @@ -249,8 +249,6 @@ void AvalancheEngine::runAvalot() { _system->delayMillis(55 - delay); // Replaces slowdown(); 55 comes from 18.2 Hz (B Flight). }; - warning("STUB: run()"); - _closing->exitGame(); } @@ -987,11 +985,10 @@ void AvalancheEngine::incScore(byte num) { if (_soundFx) { for (int j = 1; j <= 97; j++) - // Length os 2 is a guess, the original doesn't have a delay specified + // Length of 2 is a guess, the original doesn't have a delay specified _sound->playNote(177 + _dnascore * 3, 2); } } - warning("STUB: points()"); drawScore(); } diff --git a/engines/avalanche/dialogs.cpp b/engines/avalanche/dialogs.cpp index 9007e89ec5..e843d17c5b 100644 --- a/engines/avalanche/dialogs.cpp +++ b/engines/avalanche/dialogs.cpp @@ -218,8 +218,6 @@ void Dialogs::scrollModeNormal() { setReadyLight(0); _vm->_animationsEnabled = true; _vm->_holdLeftMouse = false; // Used in Lucerna::checkclick(). - - warning("STUB: Scrolls::scrollModeNormal()"); } /** @@ -646,9 +644,6 @@ void Dialogs::solidify(byte n) { * 'calldriver' and 'display' by using Common::String instead of a private buffer. */ void Dialogs::displayText(Common::String text) { -// bool was_virtual; // Was the mouse cursor virtual on entry to this proc? - warning("STUB: Scrolls::calldrivers()"); - _vm->_sound->stopSound(); setReadyLight(0); |