Fix crash when BIOS isn't found
authorBobby Smith <33353403+bslenul@users.noreply.github.com>
Mon, 17 Jul 2023 16:28:25 +0000 (18:28 +0200)
committerBobby Smith <33353403+bslenul@users.noreply.github.com>
Mon, 17 Jul 2023 16:28:25 +0000 (18:28 +0200)
frontend/libretro.c

index 938b8e5..1fb7c13 100644 (file)
@@ -2819,7 +2819,7 @@ static bool find_any_bios(const char *dirpath, char *path, size_t path_size)
    if (dir == NULL)
       return false;
 
-   for (i = 0; sizeof(substrings) / sizeof(substrings[0]); i++)
+   for (i = 0; i < (sizeof(substrings) / sizeof(substrings[0])); i++)
    {
       const char *substr = substrings[i];
       size_t len = strlen(substr);