Fix fgets param
authornegativeExponent <negativeExponent@users.noreply.github.com>
Sat, 1 May 2021 20:48:10 +0000 (04:48 +0800)
committernegativeExponent <negativeExponent@users.noreply.github.com>
Sat, 1 May 2021 20:48:10 +0000 (04:48 +0800)
frontend/libretro.c

index 395bc13..e9567de 100644 (file)
@@ -1116,7 +1116,7 @@ static bool read_m3u(const char *file)
    if (!fp)
       return false;
 
-   while (fgets(fp, line, sizeof(line)) && disk_count < sizeof(disks) / sizeof(disks[0]))
+   while (fgets(line, sizeof(line), fp) && disk_count < sizeof(disks) / sizeof(disks[0]))
    {
       if (line[0] == '#')
          continue;