1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 12:15:49 +00:00

(Steam) restore to original code

This commit is contained in:
LibretroAdmin 2022-08-26 12:38:53 +02:00
parent 205b9f862f
commit 842121ca16

View File

@ -157,7 +157,8 @@ core_info_t* steam_find_core_info_for_dlc(const char* name)
strlcpy(core_info_name, start + 1, sizeof(core_info_name));
/* Null terminate at the closing parenthesis. */
if (!(end = strchr((const char*)&core_info_name, ')'))
char *end = strchr((const char*)&core_info_name, ')');
if (!end)
continue;
*end = '\0';