From 1af7a289d516dca8b912185c2b9de89d673df9d9 Mon Sep 17 00:00:00 2001 From: Stephen Saunders Date: Thu, 23 Feb 2023 01:48:30 -0500 Subject: [PATCH] Align permitted SDL monitor refresh rates with Windows --- neo/sys/sdl/sdl_vkimp.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/neo/sys/sdl/sdl_vkimp.cpp b/neo/sys/sdl/sdl_vkimp.cpp index e51e1ee6..845fd987 100644 --- a/neo/sys/sdl/sdl_vkimp.cpp +++ b/neo/sys/sdl/sdl_vkimp.cpp @@ -750,7 +750,8 @@ bool R_GetModeListForDisplay( const int requestedDisplayNum, idList& { continue; } - if( ( m.refresh_rate != 60 ) && ( m.refresh_rate != 120 ) ) + if( ( m.refresh_rate != 60 ) && ( m.refresh_rate != 120 ) && + ( m.refresh_rate != 144 ) && ( m.refresh_rate != 165 ) && ( m.refresh_rate != 240 ) ) { continue; }