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.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/engines/avalanche/parser.cpp b/engines/avalanche/parser.cpp
index e6cbdabce8..6ccacc005f 100644
--- a/engines/avalanche/parser.cpp
+++ b/engines/avalanche/parser.cpp
@@ -43,9 +43,10 @@ void Parser::init() {
void Parser::handleInputText(const Common::Event &event) {
byte inChar = event.kbd.ascii;
- if (_vm->_dropdown->_activeMenuItem._activeNow) {
+ warning("STUB: Parser::handleInputText()");
+ /*if (_vm->_dropdown->_activeMenuItem._activeNow) {
_vm->_dropdown->parseKey(inChar, _vm->_enhanced->extd);
- } else {
+ } else {*/
if (_inputText.size() < 76) {
if ((inChar == '"') || (inChar == '`')) {
if (_quote)
@@ -60,7 +61,7 @@ void Parser::handleInputText(const Common::Event &event) {
plotText();
} else
_vm->_gyro->blip();
- }
+ //}
}
void Parser::handleBackspace() {