mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Stamp RC versions during gameplay
This commit is contained in:
parent
7dadededd6
commit
ffe55a267f
3 changed files with 13 additions and 2 deletions
|
|
@ -126,7 +126,7 @@ extern char logfilename[1024];
|
||||||
// the other options the same.
|
// the other options the same.
|
||||||
|
|
||||||
// Comment out this line to completely disable update alerts (recommended for testing, but not for release)
|
// Comment out this line to completely disable update alerts (recommended for testing, but not for release)
|
||||||
#if !defined(BETAVERSION) && !defined(DEVELOP)
|
#if !defined(DEVELOP)
|
||||||
#define UPDATE_ALERT
|
#define UPDATE_ALERT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1582,6 +1582,17 @@ void ST_Drawer(void)
|
||||||
#endif
|
#endif
|
||||||
if (rendermode != render_none) ST_doPaletteStuff();
|
if (rendermode != render_none) ST_doPaletteStuff();
|
||||||
|
|
||||||
|
#ifdef BETAVERSION
|
||||||
|
|
||||||
|
char nag[256];
|
||||||
|
snprintf(nag, sizeof(nag), "KartKrew.org - %s %s - Pre-release testing version", SRB2VERSION, BETAVERSION);
|
||||||
|
|
||||||
|
V_DrawCenteredMenuString(BASEVIDWIDTH/2, 2, V_30TRANS|V_SNAPTOTOP, nag);
|
||||||
|
|
||||||
|
V_DrawCenteredMenuString(BASEVIDWIDTH/2, BASEVIDHEIGHT - 10, V_30TRANS|V_SNAPTOBOTTOM, nag);
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
fixed_t localfadein[MAXSPLITSCREENPLAYERS];
|
fixed_t localfadein[MAXSPLITSCREENPLAYERS];
|
||||||
|
|
||||||
// HUD fading for anything not tied to a single player,
|
// HUD fading for anything not tied to a single player,
|
||||||
|
|
|
||||||
|
|
@ -7,4 +7,4 @@
|
||||||
#define MODVERSION 5
|
#define MODVERSION 5
|
||||||
|
|
||||||
// Define this as a prerelease version suffix
|
// Define this as a prerelease version suffix
|
||||||
// #define BETAVERSION "Alpha"
|
#define BETAVERSION "RC1"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue