From c6a74a38e6009568f3bb98f1b43a1c9e4f06d305 Mon Sep 17 00:00:00 2001 From: SteelT Date: Fri, 29 Dec 2023 23:24:35 -0500 Subject: [PATCH] OpenGL: Don't force texture quality to 8-bit when setting default video mode Now that options with a non-default value is explcitly marked on menus, I feel like it would be very confusing for someone to see the option be set to a non-default automatically. --- src/screen.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/screen.c b/src/screen.c index 7c931275d..889af63cb 100644 --- a/src/screen.c +++ b/src/screen.c @@ -421,7 +421,6 @@ void SCR_SetDefaultMode(void) // remember the default screen size CV_SetValue(&cv_scr_width, vid.width); CV_SetValue(&cv_scr_height, vid.height); - CV_SetValue(&cv_scr_depth, vid.bpp*8); } // Change fullscreen on/off according to cv_fullscreen