Skip to content

Commit

Permalink
Deps: Avoid -1 return in rc_runtime_progress_size()
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanTheToaster authored and stenzek committed Jun 29, 2024
1 parent 44038ad commit a483aca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 3rdparty/rcheevos/src/rcheevos/runtime_progress.c
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ uint32_t rc_runtime_progress_size(const rc_runtime_t* runtime, lua_State* L)

result = rc_runtime_progress_serialize_internal(&progress);
if (result != RC_OK)
return result;
return 0;

return progress.offset;
}
Expand Down

0 comments on commit a483aca

Please sign in to comment.