Skip to content

Commit

Permalink
fix logic error
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamiras committed Sep 24, 2018
1 parent fbdaa67 commit efbd7bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RASnes9x/win32/wsnes9x.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1290,7 +1290,7 @@ int HandleKeyMessage(WPARAM wParam, LPARAM lParam)
if(wParam == CustomKeys.Rewind.key
&& modifiers == CustomKeys.Rewind.modifiers)
{
if (!RA_HardcoreModeIsActive())
if (RA_HardcoreModeIsActive())
return 1;

if(!GUI.rewinding)
Expand Down

0 comments on commit efbd7bc

Please sign in to comment.