mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-04-24 02:32:18 +00:00
Align permitted SDL monitor refresh rates with Windows
This commit is contained in:
parent
395eabb2d2
commit
1af7a289d5
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue