Skip to content

Commit

Permalink
Backported extra CD/DVD filesystem checks to stable-2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Mar 22, 2010
1 parent b73d4a1 commit aadfb3b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions platform/unix.c
Expand Up @@ -104,6 +104,14 @@ void __PHYSFS_platformDetectAvailableCDs(PHYSFS_StringCallback cb, void *data)
int add_it = 0;
if (strcmp(ent->mnt_type, "iso9660") == 0)
add_it = 1;
else if (strcmp(ent->mnt_type, "udf") == 0)
add_it = 1;

/* !!! FIXME: these might pick up floppy drives, right? */
else if (strcmp(ent->mnt_type, "auto") == 0)
add_it = 1;
else if (strcmp(ent->mnt_type, "supermount") == 0)
add_it = 1;

/* add other mount types here */

Expand Down

0 comments on commit aadfb3b

Please sign in to comment.