Skip to content

Commit

Permalink
Changes a C++ style comment into a C style comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Buchwald committed May 22, 2024
1 parent 4ec185a commit 7c3f595
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rcheevos/rc_validate.c
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ int rc_validate_condset_internal(const rc_condset_t* condset, char result[], con
}

if (!remember_used && uses_recall) {
if (!cond->pause) { // non-pause condition could be using something remembered in the pause pass
if (!cond->pause) { /* check if a later pause condition remembers a value as that means a value will have been remembered by this point. */
for (cond_rem_pause_check = condset->conditions; cond_rem_pause_check; cond_rem_pause_check = cond_rem_pause_check->next) {
if (cond_rem_pause_check->type == RC_CONDITION_REMEMBER && cond_rem_pause_check->pause) {
remember_used = 1; /* do not set remember_used_in_pause here because we don't know at which poing in the pause processing this remember is occurring. */
Expand Down

0 comments on commit 7c3f595

Please sign in to comment.