diff options
author | Strangerke | 2012-06-18 21:30:51 +0200 |
---|---|---|
committer | Strangerke | 2012-06-18 21:30:51 +0200 |
commit | e8546a46a01ee74f7d9833196246b27fbc5bc473 (patch) | |
tree | 6157f3e435cb9acf3f4b368798e933136f657dfc /engines/hugo | |
parent | 6e11720e298805904181656b282b217cacc3675a (diff) | |
download | scummvm-rg350-e8546a46a01ee74f7d9833196246b27fbc5bc473.tar.gz scummvm-rg350-e8546a46a01ee74f7d9833196246b27fbc5bc473.tar.bz2 scummvm-rg350-e8546a46a01ee74f7d9833196246b27fbc5bc473.zip |
HUGO: Remove F9 key handling
Diffstat (limited to 'engines/hugo')
-rw-r--r-- | engines/hugo/display.cpp | 2 | ||||
-rw-r--r-- | engines/hugo/parser.cpp | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/engines/hugo/display.cpp b/engines/hugo/display.cpp index b86b1f0366..fbe39b3a0c 100644 --- a/engines/hugo/display.cpp +++ b/engines/hugo/display.cpp @@ -488,7 +488,7 @@ void Screen::userHelp() const { "F5 - Restore game\n" "F6 - Inventory\n" "F8 - Turbo button\n" - "F9 - Boss button\n\n" + "\n" "ESC - Return to game"); } diff --git a/engines/hugo/parser.cpp b/engines/hugo/parser.cpp index d18cc2181c..5fdb2026a7 100644 --- a/engines/hugo/parser.cpp +++ b/engines/hugo/parser.cpp @@ -362,9 +362,6 @@ void Parser::keyHandler(Common::Event event) { case Common::KEYCODE_F8: // Turbo mode switchTurbo(); break; - case Common::KEYCODE_F9: // Boss button - warning("STUB: F9 (DOS) - BossKey"); - break; default: // Any other key if (!gameStatus._storyModeFl) { // Keyboard disabled // Add printable keys to ring buffer |