Fix op_tap_key

This commit is contained in:
Alexander Batalov 2023-05-31 22:22:56 +03:00
parent 4773ae5507
commit 5298dc0985
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ static void opGetPcBonusStat(Program* program)
// tap_key
static void op_tap_key(Program* program)
{
int key = programStackPopInteger();
int key = programStackPopInteger(program);
sfall_kb_press_key(key);
}