Stamp RC versions during gameplay

This commit is contained in:
Antonio Martinez 2025-09-10 15:56:44 -04:00
parent 7dadededd6
commit ffe55a267f
3 changed files with 13 additions and 2 deletions

View file

@ -126,7 +126,7 @@ extern char logfilename[1024];
// the other options the same.
// 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
#endif

View file

@ -1582,6 +1582,17 @@ void ST_Drawer(void)
#endif
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];
// HUD fading for anything not tied to a single player,

View file

@ -7,4 +7,4 @@
#define MODVERSION 5
// Define this as a prerelease version suffix
// #define BETAVERSION "Alpha"
#define BETAVERSION "RC1"