aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/avalanche/parser.cpp')
-rw-r--r--engines/avalanche/parser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/avalanche/parser.cpp b/engines/avalanche/parser.cpp
index 903a01b796..5f9e5d8965 100644
--- a/engines/avalanche/parser.cpp
+++ b/engines/avalanche/parser.cpp
@@ -60,7 +60,7 @@ void Parser::handleInputText(const Common::Event &event) {
_inputTextPos++;
plotText();
} else
- _vm->_gyro->blip();
+ _vm->_sound->blip();
// }
}
@@ -73,7 +73,7 @@ void Parser::handleBackspace() {
_inputText.deleteChar(_inputTextPos);
plotText();
} else
- _vm->_gyro->blip();
+ _vm->_sound->blip();
}
}