mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Warn about resolutions above 1280x800
This commit is contained in:
parent
fed0740d99
commit
369de749c4
1 changed files with 8 additions and 2 deletions
|
|
@ -5040,6 +5040,12 @@ void M_DrawVideoModes(void)
|
||||||
(SCR_IsAspectCorrect(cv_scr_width.value, cv_scr_height.value)) ? 0x83 : 0x80,
|
(SCR_IsAspectCorrect(cv_scr_width.value, cv_scr_height.value)) ? 0x83 : 0x80,
|
||||||
cv_scr_width.value, cv_scr_height.value));
|
cv_scr_width.value, cv_scr_height.value));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if (vid.width > 1280 || vid.height > 800)
|
||||||
|
V_DrawCenteredMenuString(BASEVIDWIDTH/2 + t, currentMenu->y + 75+24,
|
||||||
|
(I_GetTime() % 20 >= 10) ? V_REDMAP : V_YELLOWMAP, va("High resolutions will impact performance. Careful!"));
|
||||||
|
else
|
||||||
V_DrawCenteredMenuString(BASEVIDWIDTH/2 + t, currentMenu->y + 75+24,
|
V_DrawCenteredMenuString(BASEVIDWIDTH/2 + t, currentMenu->y + 75+24,
|
||||||
recommendedflags, "Modes marked in GREEN are recommended.");
|
recommendedflags, "Modes marked in GREEN are recommended.");
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue