diff options
author | Nicola Mettifogo | 2008-07-22 09:12:10 +0000 |
---|---|---|
committer | Nicola Mettifogo | 2008-07-22 09:12:10 +0000 |
commit | 85f56095bf4e3637a59cf1fd5a442fd08e6a9c47 (patch) | |
tree | 141e5856babc53b98380b1e4fec32a2f1169ea17 /engines/parallaction | |
parent | 791d2b3ba2aea96c45c3221c1ce84a06b4f1f6e3 (diff) | |
download | scummvm-rg350-85f56095bf4e3637a59cf1fd5a442fd08e6a9c47.tar.gz scummvm-rg350-85f56095bf4e3637a59cf1fd5a442fd08e6a9c47.tar.bz2 scummvm-rg350-85f56095bf4e3637a59cf1fd5a442fd08e6a9c47.zip |
Removed unneeded input code.
svn-id: r33189
Diffstat (limited to 'engines/parallaction')
-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; |