Skip to content

Commit

Permalink
Bug Fix
Browse files Browse the repository at this point in the history
Fixed a bug with loading RememberClick save files.
  • Loading branch information
ryandw11 committed Feb 6, 2023
1 parent fab29f1 commit 0ca7668
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AutoClickerDL/General.c
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ BOOL LoadRecordingState(RecordingState* state, LPCWSTR location) {
return FALSE;
}
}
else if (rememberClick.type = RC_KEY_PRESS) {
else if (rememberClick.type == RC_KEY_PRESS) {
if (!fgeti(inputFile, &rememberClick.ki.type) || !fgeti(inputFile, &rememberClick.ki.key)) {
DeleteRecordingState(state);
fclose(inputFile);
Expand Down

0 comments on commit 0ca7668

Please sign in to comment.