mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-26 15:31:03 +00:00
Further changes in anticipation of potential future TESTER builds.
* Create a seperate `unlocks.pk3` so we can customise what the testers have. * Make TESTERS(/HOSTTESTERS) builds have their own default gamedata.
This commit is contained in:
parent
3101cf25cd
commit
78bc4fdac9
2 changed files with 6 additions and 2 deletions
|
|
@ -1125,6 +1125,7 @@ static void IdentifyVersion(void)
|
|||
#define TEXTURESNAME "MISC_TEXTURES.pk3"
|
||||
#define MAPSNAME "MISC_MAPS.pk3"
|
||||
#define PATCHNAME "MISC_SCRIPTS.pk3"
|
||||
#define UNLOCKNAME "MISC_UNLOCKS.pk3"
|
||||
#define MUSICNAME "MISC_MUSIC.PK3"
|
||||
////
|
||||
#else
|
||||
|
|
@ -1132,6 +1133,7 @@ static void IdentifyVersion(void)
|
|||
#define TEXTURESNAME "textures.pk3"
|
||||
#define MAPSNAME "maps.pk3"
|
||||
#define PATCHNAME "scripts.pk3"
|
||||
#define UNLOCKNAME "unlocks.pk3"
|
||||
#define MUSICNAME "music.pk3"
|
||||
////
|
||||
#endif
|
||||
|
|
@ -1148,7 +1150,7 @@ static void IdentifyVersion(void)
|
|||
#endif
|
||||
#define UNLOCKTESTING
|
||||
#if defined(DEVELOP) && defined(UNLOCKTESTING)
|
||||
D_AddFile(startupiwads, va(pandf,srb2waddir,"unlocks.pk3"));
|
||||
D_AddFile(startupiwads, va(pandf,srb2waddir,UNLOCKNAME));
|
||||
#endif
|
||||
////
|
||||
#undef TEXTURESNAME
|
||||
|
|
|
|||
|
|
@ -77,7 +77,9 @@ JoyType_t Joystick[MAXSPLITSCREENPLAYERS];
|
|||
|
||||
// SRB2kart
|
||||
char gamedatafilename[64] =
|
||||
#ifdef DEVELOP
|
||||
#if defined (TESTERS) || defined (HOSTTESTERS)
|
||||
"test"
|
||||
#elif defined(DEVELOP)
|
||||
"develop"
|
||||
#endif
|
||||
"ringdata.dat";
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue