Rename __PHYSFS_Archiver_SZIP to __PHYSFS_Archiver_7Z.

This commit is contained in:
Ryan C. Gordon 2017-07-22 13:50:03 -04:00
parent 1fa4be6f66
commit 6d91dde273
3 changed files with 3 additions and 3 deletions

View File

@ -1131,7 +1131,7 @@ static int initStaticArchivers(void)
REGISTER_STATIC_ARCHIVER(ZIP);
#endif
#if PHYSFS_SUPPORTS_7Z
REGISTER_STATIC_ARCHIVER(SZIP);
REGISTER_STATIC_ARCHIVER(7Z);
#endif
#if PHYSFS_SUPPORTS_GRP
REGISTER_STATIC_ARCHIVER(GRP);

View File

@ -387,7 +387,7 @@ static int SZIP_stat(void *opaque, const char *path, PHYSFS_Stat *stat)
} /* SZIP_stat */
const PHYSFS_Archiver __PHYSFS_Archiver_SZIP =
const PHYSFS_Archiver __PHYSFS_Archiver_7Z =
{
CURRENT_PHYSFS_ARCHIVER_API_VERSION,
{

View File

@ -79,7 +79,7 @@ extern "C" {
wrapped in PHYSFS_SUPPORTS_* checks before actually referencing them. */
extern const PHYSFS_Archiver __PHYSFS_Archiver_DIR;
extern const PHYSFS_Archiver __PHYSFS_Archiver_ZIP;
extern const PHYSFS_Archiver __PHYSFS_Archiver_SZIP;
extern const PHYSFS_Archiver __PHYSFS_Archiver_7Z;
extern const PHYSFS_Archiver __PHYSFS_Archiver_GRP;
extern const PHYSFS_Archiver __PHYSFS_Archiver_QPAK;
extern const PHYSFS_Archiver __PHYSFS_Archiver_HOG;