From 4ea7da3358ae718ac36c7ddfedf957d965ce308b Mon Sep 17 00:00:00 2001 From: Ernie Miller Date: Wed, 21 Jan 2026 21:10:41 -0500 Subject: [PATCH] Fix supersampling menu display Fixes #41 --- code/q3_ui/ui_video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/q3_ui/ui_video.c b/code/q3_ui/ui_video.c index 4489a37e2e..b76bc41617 100644 --- a/code/q3_ui/ui_video.c +++ b/code/q3_ui/ui_video.c @@ -748,7 +748,7 @@ static void GraphicsOptions_SetMenuItems( void ) } else if (superSampling == 1.4f) { s_graphicsoptions.supersampling.curvalue = 9; } else if (superSampling == 1.5f) { - s_graphicsoptions.supersampling.curvalue = 1; + s_graphicsoptions.supersampling.curvalue = 10; } else if (superSampling == 1.75f) { s_graphicsoptions.supersampling.curvalue = 11; } else if (superSampling >= 2.0f) {