mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2024-11-10 06:31:40 +00:00
Fix misaligned Graphics Settings
This commit is contained in:
parent
2207125c66
commit
d4e8999950
1 changed files with 3 additions and 3 deletions
|
@ -2734,21 +2734,21 @@ void M_Screen_Draw (void)
|
||||||
Draw_ColoredString(10, 95, "Fullbright", 255, 0, 0, 255, 1);
|
Draw_ColoredString(10, 95, "Fullbright", 255, 0, 0, 255, 1);
|
||||||
else
|
else
|
||||||
Draw_ColoredString(10, 95, "Fullbright", 255, 255, 255, 255, 1);
|
Draw_ColoredString(10, 95, "Fullbright", 255, 255, 255, 255, 1);
|
||||||
M_DrawCheckbox(225, 105, r_fullbright.value);
|
M_DrawCheckbox(225, 955, r_fullbright.value);
|
||||||
|
|
||||||
// Dithering
|
// Dithering
|
||||||
if (video_cursor == 6)
|
if (video_cursor == 6)
|
||||||
Draw_ColoredString(10, 105, "Dithering", 255, 0, 0, 255, 1);
|
Draw_ColoredString(10, 105, "Dithering", 255, 0, 0, 255, 1);
|
||||||
else
|
else
|
||||||
Draw_ColoredString(10, 105, "Dithering", 255, 255, 255, 255, 1);
|
Draw_ColoredString(10, 105, "Dithering", 255, 255, 255, 255, 1);
|
||||||
M_DrawCheckbox(225, 115, r_dithering.value);
|
M_DrawCheckbox(225, 105, r_dithering.value);
|
||||||
|
|
||||||
// Retro
|
// Retro
|
||||||
if (video_cursor == 7)
|
if (video_cursor == 7)
|
||||||
Draw_ColoredString(10, 115, "Retro", 255, 0, 0, 255, 1);
|
Draw_ColoredString(10, 115, "Retro", 255, 0, 0, 255, 1);
|
||||||
else
|
else
|
||||||
Draw_ColoredString(10, 115, "Retro", 255, 255, 255, 255, 1);
|
Draw_ColoredString(10, 115, "Retro", 255, 255, 255, 255, 1);
|
||||||
M_DrawCheckbox(225, 125, r_retro.value);
|
M_DrawCheckbox(225, 115, r_retro.value);
|
||||||
|
|
||||||
// Back
|
// Back
|
||||||
if (video_cursor == 8)
|
if (video_cursor == 8)
|
||||||
|
|
Loading…
Reference in a new issue