mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'testers-extras' into 'master'
Extra changes for TESTERS builds See merge request KartKrew/Kart!835
This commit is contained in:
commit
2533ebba23
2 changed files with 6 additions and 2 deletions
|
|
@ -1125,6 +1125,7 @@ static void IdentifyVersion(void)
|
||||||
#define TEXTURESNAME "MISC_TEXTURES.pk3"
|
#define TEXTURESNAME "MISC_TEXTURES.pk3"
|
||||||
#define MAPSNAME "MISC_MAPS.pk3"
|
#define MAPSNAME "MISC_MAPS.pk3"
|
||||||
#define PATCHNAME "MISC_SCRIPTS.pk3"
|
#define PATCHNAME "MISC_SCRIPTS.pk3"
|
||||||
|
#define UNLOCKNAME "MISC_UNLOCKS.pk3"
|
||||||
#define MUSICNAME "MISC_MUSIC.PK3"
|
#define MUSICNAME "MISC_MUSIC.PK3"
|
||||||
////
|
////
|
||||||
#else
|
#else
|
||||||
|
|
@ -1132,6 +1133,7 @@ static void IdentifyVersion(void)
|
||||||
#define TEXTURESNAME "textures.pk3"
|
#define TEXTURESNAME "textures.pk3"
|
||||||
#define MAPSNAME "maps.pk3"
|
#define MAPSNAME "maps.pk3"
|
||||||
#define PATCHNAME "scripts.pk3"
|
#define PATCHNAME "scripts.pk3"
|
||||||
|
#define UNLOCKNAME "unlocks.pk3"
|
||||||
#define MUSICNAME "music.pk3"
|
#define MUSICNAME "music.pk3"
|
||||||
////
|
////
|
||||||
#endif
|
#endif
|
||||||
|
|
@ -1148,7 +1150,7 @@ static void IdentifyVersion(void)
|
||||||
#endif
|
#endif
|
||||||
#define UNLOCKTESTING
|
#define UNLOCKTESTING
|
||||||
#if defined(DEVELOP) && defined(UNLOCKTESTING)
|
#if defined(DEVELOP) && defined(UNLOCKTESTING)
|
||||||
D_AddFile(startupiwads, va(pandf,srb2waddir,"unlocks.pk3"));
|
D_AddFile(startupiwads, va(pandf,srb2waddir,UNLOCKNAME));
|
||||||
#endif
|
#endif
|
||||||
////
|
////
|
||||||
#undef TEXTURESNAME
|
#undef TEXTURESNAME
|
||||||
|
|
|
||||||
|
|
@ -77,7 +77,9 @@ JoyType_t Joystick[MAXSPLITSCREENPLAYERS];
|
||||||
|
|
||||||
// SRB2kart
|
// SRB2kart
|
||||||
char gamedatafilename[64] =
|
char gamedatafilename[64] =
|
||||||
#ifdef DEVELOP
|
#if defined (TESTERS) || defined (HOSTTESTERS)
|
||||||
|
"test"
|
||||||
|
#elif defined(DEVELOP)
|
||||||
"develop"
|
"develop"
|
||||||
#endif
|
#endif
|
||||||
"ringdata.dat";
|
"ringdata.dat";
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue