diff options
author | Strangerke | 2013-10-11 07:54:42 +0200 |
---|---|---|
committer | Strangerke | 2013-10-11 07:54:42 +0200 |
commit | 72e55fab7001166dfe04d000171435d6eb948e85 (patch) | |
tree | c6473bb80fb90ea7d3a12188c0f8b4e231e23893 /engines | |
parent | b0255c9406d2e90b076e7f9c5f42049e4e0ba2d4 (diff) | |
download | scummvm-rg350-72e55fab7001166dfe04d000171435d6eb948e85.tar.gz scummvm-rg350-72e55fab7001166dfe04d000171435d6eb948e85.tar.bz2 scummvm-rg350-72e55fab7001166dfe04d000171435d6eb948e85.zip |
AVALANCHE: Implement Bleep(), improve one comment
Diffstat (limited to 'engines')
-rw-r--r-- | engines/avalanche/menu.cpp | 2 | ||||
-rw-r--r-- | engines/avalanche/parser.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/avalanche/menu.cpp b/engines/avalanche/menu.cpp index c799ef0761..4768f3e79d 100644 --- a/engines/avalanche/menu.cpp +++ b/engines/avalanche/menu.cpp @@ -333,7 +333,7 @@ void Menu::drawMenuText(int16 x, int16 y, char trigger, Common::String text, boo } void Menu::bleep() { - warning("STUB: Menu::bleep()"); + _vm->_sound->playNote(177, 7); } void Menu::parseKey(char r, char re) { diff --git a/engines/avalanche/parser.cpp b/engines/avalanche/parser.cpp index ca97d4d1e8..b9b179506b 100644 --- a/engines/avalanche/parser.cpp +++ b/engines/avalanche/parser.cpp @@ -2006,7 +2006,7 @@ void Parser::doThat() { if (_thing == kObjectBell) { _vm->_dialogs->displayText("Ding, dong, ding, dong, ding, dong, ding, dong..."); if ((_vm->_bellsAreRinging) & (_vm->getFlag('B'))) - // \? are used to avoid that ??! is parsed as a trigraph + // '\?' are used to avoid that '??!' is parsed as a trigraph _vm->_dialogs->displayText("(Are you trying to join in, Avvy\?\?!)"); } else _vm->_dialogs->displayText(kWhat); |