diff options
author | Arnaud Boutonné | 2010-08-20 16:02:00 +0000 |
---|---|---|
committer | Arnaud Boutonné | 2010-08-20 16:02:00 +0000 |
commit | 48c9b4855bd9481f88912333aae0bf4aa3b0978c (patch) | |
tree | 225b7298c8a0410f1548ddf6acdb1de0c1d711a9 /engines/hugo | |
parent | 30f1312386e8b6ae0156e48eaac2d54c53985b51 (diff) | |
download | scummvm-rg350-48c9b4855bd9481f88912333aae0bf4aa3b0978c.tar.gz scummvm-rg350-48c9b4855bd9481f88912333aae0bf4aa3b0978c.tar.bz2 scummvm-rg350-48c9b4855bd9481f88912333aae0bf4aa3b0978c.zip |
Hugo - Fix a problem in the F1 behavior
svn-id: r52228
Diffstat (limited to 'engines/hugo')
-rw-r--r-- | engines/hugo/parser.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/hugo/parser.cpp b/engines/hugo/parser.cpp index 5fa0dac774..9a889698ef 100644 --- a/engines/hugo/parser.cpp +++ b/engines/hugo/parser.cpp @@ -85,9 +85,10 @@ void Parser::keyHandler(uint16 nChar, uint16 nFlags) { if (_checkDoubleF1Fl) { _vm.file().instructions(); _checkDoubleF1Fl = false; - } else + } else { _vm.screen().userHelp(); _checkDoubleF1Fl = true; + } break; case Common::KEYCODE_F6: // Inventory showDosInventory(); |