--- a/src/physfs.c Wed Mar 17 14:27:26 2010 -0400
+++ b/src/physfs.c Wed Mar 17 14:50:54 2010 -0400
@@ -66,6 +66,8 @@
extern const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_WAD;
extern const PHYSFS_Archiver __PHYSFS_Archiver_WAD;
extern const PHYSFS_Archiver __PHYSFS_Archiver_DIR;
+extern const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_ISO9660;
+extern const PHYSFS_Archiver __PHYSFS_Archiver_ISO9660;
static const PHYSFS_ArchiveInfo *supported_types[] =
@@ -91,6 +93,7 @@
#if (defined PHYSFS_SUPPORTS_WAD)
&__PHYSFS_ArchiveInfo_WAD,
#endif
+ &__PHYSFS_ArchiveInfo_ISO9660,
NULL
};
@@ -118,6 +121,7 @@
#if (defined PHYSFS_SUPPORTS_WAD)
&__PHYSFS_Archiver_WAD,
#endif
+ &__PHYSFS_Archiver_ISO9660,
NULL
};