Hugo - Fix a problem in the F1 behavior
svn-id: r52228
This commit is contained in:
parent
30f1312386
commit
48c9b4855b
1 changed files with 2 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue