Просмотр исходного кода

haiku: CD-ROM detection should report any mounted volume on a B_CD device.

Most discs only use the "raw" device, but it turns out the Haiku installation
"anyboot" images don't, and those would fail to detect here. If there's
some multi-partition disc thing and the OS mounted each separately, we should
report each of them.
Ryan C. Gordon 8 лет назад
Родитель
Сommit
1efdb62a8f
1 измененных файлов с 0 добавлено и 3 удалено
  1. 0 3
      src/physfs_platform_haiku.cpp

+ 0 - 3
src/physfs_platform_haiku.cpp

@@ -105,9 +105,6 @@ static void tryDir(const char *d, PHYSFS_StringCallback callback, void *data)
             continue;
         } /* if */
 
-        if (strcmp(e.name, "raw") != 0)  /* ignore partitions. */
-            continue;
-
         const int devfd = open(name, O_RDONLY);
         if (devfd < 0)
             continue;