mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-24 08:52:33 +00:00
Don't show prerelease message when taking thumbnails
This commit is contained in:
parent
d883e54886
commit
8ed4c1c081
2 changed files with 8 additions and 4 deletions
|
|
@ -2414,5 +2414,6 @@ void D_TakeMapSnapshots(void)
|
|||
setmodeneeded = old_mode + 1;
|
||||
D_Display(true);
|
||||
}
|
||||
g_takemapthumbnail = TMT_NO;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1584,12 +1584,15 @@ void ST_Drawer(void)
|
|||
|
||||
#ifdef BETAVERSION
|
||||
|
||||
char nag[256];
|
||||
snprintf(nag, sizeof(nag), "KartKrew.org - %s %s - Pre-release testing version", SRB2VERSION, BETAVERSION);
|
||||
if (g_takemapthumbnail == TMT_NO)
|
||||
{
|
||||
char nag[256];
|
||||
snprintf(nag, sizeof(nag), "KartKrew.org - %s %s - Pre-release testing version", SRB2VERSION, BETAVERSION);
|
||||
|
||||
V_DrawCenteredMenuString(BASEVIDWIDTH/2, 2, V_60TRANS|V_SNAPTOTOP, nag);
|
||||
V_DrawCenteredMenuString(BASEVIDWIDTH/2, 2, V_60TRANS|V_SNAPTOTOP, nag);
|
||||
|
||||
V_DrawCenteredMenuString(BASEVIDWIDTH/2, BASEVIDHEIGHT - 10, V_60TRANS|V_SNAPTOBOTTOM, nag);
|
||||
V_DrawCenteredMenuString(BASEVIDWIDTH/2, BASEVIDHEIGHT - 10, V_60TRANS|V_SNAPTOBOTTOM, nag);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue