Hugo - Fix a problem in the F1 behavior

svn-id: r52228
This commit is contained in:
Arnaud Boutonné 2010-08-20 16:02:00 +00:00
parent 30f1312386
commit 48c9b4855b

View file

@ -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();