Skip to content

Commit

Permalink
(Steam) Buildfix
Browse files Browse the repository at this point in the history
  • Loading branch information
LibretroAdmin committed Aug 26, 2022
1 parent de67f17 commit 1b07e2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions steam/steam.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,9 @@ core_info_t* steam_find_core_info_for_dlc(const char* name)
char *start, *end;
char core_info_name[256];
core_info_t *core_info = core_info_get(core_info_list, i);

/* Find the opening parenthesis for the core name */
if (!(start = strchr(core_info->display_name, '('))))
char *start = strchr(core_info->display_name, '(');
if (!start)
continue;

/* Skip the first parenthesis and copy it to the stack */
Expand Down

0 comments on commit 1b07e2b

Please sign in to comment.