mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[WIN32SS] In LDEVOBJ_bGetClosestMode, search 60 Hz if everything failed
This function needs probably to be rewritten.
This commit is contained in:
parent
22dac3447f
commit
900beca021
1 changed files with 9 additions and 0 deletions
|
@ -688,6 +688,15 @@ LDEVOBJ_bGetClosestMode(
|
|||
if (LDEVOBJ_bProbeAndCaptureDevmode(pGraphicsDevice, RequestedMode, pSelectedMode, FALSE))
|
||||
return TRUE;
|
||||
|
||||
/* Search 60 Hz (if not already specified) */
|
||||
if (!(RequestedMode->dmFields & DM_DISPLAYFREQUENCY))
|
||||
{
|
||||
RequestedMode->dmDisplayFrequency = 60;
|
||||
RequestedMode->dmFields |= DM_DISPLAYFREQUENCY;
|
||||
if (LDEVOBJ_bProbeAndCaptureDevmode(pGraphicsDevice, RequestedMode, pSelectedMode, FALSE))
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* Fall back to first mode */
|
||||
WARN("Fall back to first available mode\n");
|
||||
*pSelectedMode = pGraphicsDevice->pDevModeList[0].pdm;
|
||||
|
|
Loading…
Reference in a new issue