Revert "Modified how we initialize save file info."

This reverts commit 44b002c9f3.
This commit is contained in:
nhmall
2018-11-23 22:17:35 -05:00
parent 66b874dce3
commit 75a962aa78
2 changed files with 40 additions and 29 deletions

View File

@@ -285,11 +285,49 @@ char *fqn_prefix_names[PREFIX_COUNT] = {
#endif
NEARDATA struct savefile_info sfcap = {
SFI1_DEFAULT, SFI2_DEFAULT, SFI3_DEFAULT
#ifdef NHSTDC
0x00000000UL
#else
0x00000000L
#endif
#if defined(COMPRESS) || defined(ZLIB_COMP)
| SFI1_EXTERNALCOMP
#endif
#if defined(ZEROCOMP)
| SFI1_ZEROCOMP
#endif
#if defined(RLECOMP)
| SFI1_RLECOMP
#endif
,
#ifdef NHSTDC
0x00000000UL, 0x00000000UL
#else
0x00000000L, 0x00000000L
#endif
};
NEARDATA struct savefile_info sfrestinfo, sfsaveinfo = {
SFI1_DEFAULT, SFI2_DEFAULT, SFI3_DEFAULT
#ifdef NHSTDC
0x00000000UL
#else
0x00000000L
#endif
#if defined(COMPRESS) || defined(ZLIB_COMP)
| SFI1_EXTERNALCOMP
#endif
#if defined(ZEROCOMP)
| SFI1_ZEROCOMP
#endif
#if defined(RLECOMP)
| SFI1_RLECOMP
#endif
,
#ifdef NHSTDC
0x00000000UL, 0x00000000UL
#else
0x00000000L, 0x00000000L
#endif
};
struct plinemsg_type *plinemsg_types = (struct plinemsg_type *) 0;