Skip to content

Commit

Permalink
Blood: Clear quicksave/quickload keybinds on F6/F9 (#787)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmyqlfpir committed Mar 12, 2024
1 parent f9a3d89 commit 939f330
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions source/blood/src/blood.cpp
Expand Up @@ -991,6 +991,7 @@ void LocalKeys(void)
return;
case sc_F6:
keyFlushScans();
CONTROL_ClearButton(gamefunc_Quick_Save);
if (gGameOptions.nGameType == kGameTypeSinglePlayer)
DoQuickSave();
break;
Expand All @@ -1001,6 +1002,7 @@ void LocalKeys(void)
return;
case sc_F9:
keyFlushScans();
CONTROL_ClearButton(gamefunc_Quick_Load);
if (gGameOptions.nGameType == kGameTypeSinglePlayer)
DoQuickLoad();
break;
Expand Down

0 comments on commit 939f330

Please sign in to comment.