diff options
-rw-r--r-- | engines/parallaction/input.cpp | 13 | ||||
-rw-r--r-- | engines/parallaction/input.h | 1 |
2 files changed, 1 insertions, 13 deletions
diff --git a/engines/parallaction/input.cpp b/engines/parallaction/input.cpp index 63ab01438d..a2f42508c9 100644 --- a/engines/parallaction/input.cpp +++ b/engines/parallaction/input.cpp @@ -178,14 +178,6 @@ void Input::updateGameInput() { } -void Input::updateCommentInput() { -/* waitUntilLeftClick(); - - _vm->hideDialogueStuff(); - _vm->_gfx->setHalfbriteMode(false); - - _inputMode = kInputModeGame; -*/} InputData* Input::updateInput() { @@ -193,16 +185,13 @@ InputData* Input::updateInput() { switch (_inputMode) { case kInputModeComment: + case kInputModeDialogue: readInput(); break; case kInputModeGame: updateGameInput(); break; - - case kInputModeDialogue: - readInput(); - break; } return &_inputData; diff --git a/engines/parallaction/input.h b/engines/parallaction/input.h index f260352dba..c0630e410a 100644 --- a/engines/parallaction/input.h +++ b/engines/parallaction/input.h @@ -49,7 +49,6 @@ struct InputData { class Input { void updateGameInput(); - void updateCommentInput(); // input-only InputData _inputData; |