Skip to content

Commit

Permalink
(courtesy of Psyraven) Fix crashes with Explore view
Browse files Browse the repository at this point in the history
  • Loading branch information
LibretroAdmin committed Dec 31, 2024
1 parent 953a2d0 commit 20ec0c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion menu/menu_explore.c
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ static void explore_append_title(char *s, size_t len,
va_list ap;
size_t _len = strlen(s);
va_start(ap, fmt);
vsnprintf(s + len, len - _len, fmt, ap);
vsnprintf(s + _len, len - _len, fmt, ap);
va_end(ap);
}

Expand Down

0 comments on commit 20ec0c6

Please sign in to comment.