Align permitted SDL monitor refresh rates with Windows

This commit is contained in:
Stephen Saunders 2023-02-23 01:48:30 -05:00
parent 395eabb2d2
commit 1af7a289d5

View file

@ -750,7 +750,8 @@ bool R_GetModeListForDisplay( const int requestedDisplayNum, idList<vidMode_t>&
{
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;
}