[Scummvm-cvs-logs] scummvm master -> e8546a46a01ee74f7d9833196246b27fbc5bc473

Strangerke Strangerke at scummvm.org
Mon Jun 18 21:31:20 CEST 2012


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
e8546a46a0 HUGO: Remove F9 key handling


Commit: e8546a46a01ee74f7d9833196246b27fbc5bc473
    https://github.com/scummvm/scummvm/commit/e8546a46a01ee74f7d9833196246b27fbc5bc473
Author: Strangerke (strangerke at scummvm.org)
Date: 2012-06-18T12:30:51-07:00

Commit Message:
HUGO: Remove F9 key handling

Changed paths:
    engines/hugo/display.cpp
    engines/hugo/parser.cpp



diff --git a/engines/hugo/display.cpp b/engines/hugo/display.cpp
index b86b1f0..fbe39b3 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 d18cc21..5fdb202 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






More information about the Scummvm-git-logs mailing list