mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 20:11:47 +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;
|
setmodeneeded = old_mode + 1;
|
||||||
D_Display(true);
|
D_Display(true);
|
||||||
}
|
}
|
||||||
|
g_takemapthumbnail = TMT_NO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1584,12 +1584,15 @@ void ST_Drawer(void)
|
||||||
|
|
||||||
#ifdef BETAVERSION
|
#ifdef BETAVERSION
|
||||||
|
|
||||||
char nag[256];
|
if (g_takemapthumbnail == TMT_NO)
|
||||||
snprintf(nag, sizeof(nag), "KartKrew.org - %s %s - Pre-release testing version", SRB2VERSION, BETAVERSION);
|
{
|
||||||
|
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
|
#endif
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue