From d4e899995054843ec1cf2410ad0fdb1ddda97d50 Mon Sep 17 00:00:00 2001 From: Steam Deck User Date: Tue, 7 Feb 2023 23:42:12 -0500 Subject: [PATCH] Fix misaligned Graphics Settings --- source/menu.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/menu.c b/source/menu.c index 44f9072..2b0f676 100644 --- a/source/menu.c +++ b/source/menu.c @@ -2734,21 +2734,21 @@ void M_Screen_Draw (void) Draw_ColoredString(10, 95, "Fullbright", 255, 0, 0, 255, 1); else 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 if (video_cursor == 6) Draw_ColoredString(10, 105, "Dithering", 255, 0, 0, 255, 1); else 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 if (video_cursor == 7) Draw_ColoredString(10, 115, "Retro", 255, 0, 0, 255, 1); else 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 if (video_cursor == 8)