Skip to content

Commit

Permalink
Fixed Egg's summary screen softlock (#4301)
Browse files Browse the repository at this point in the history
  • Loading branch information
AsparagusEduardo authored Mar 24, 2024
1 parent 8856597 commit 30851b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gflib/string_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,7 @@ void ConvertInternationalString(u8 *s, u8 language)

i--;

while (i != (u8)-1)
while (i != -1)
{
s[i + 2] = s[i];
i--;
Expand Down

0 comments on commit 30851b0

Please sign in to comment.