1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-24 17:49:52 +01:00

make lowest resolutio check less strict

This commit is contained in:
FunkyFr3sh 2021-11-12 02:05:39 +01:00
parent c1a9d72b68
commit eeffc910d1

View File

@ -211,7 +211,7 @@ BOOL util_get_lowest_resolution(
DWORD max_height) DWORD max_height)
{ {
BOOL result = FALSE; BOOL result = FALSE;
int org_ratio = (int)((ratio + 0.005f) * 100); int org_ratio = (int)((ratio + 0.005f) * 10);
SIZE lowest = { .cx = max_width + 1, .cy = max_height + 1 }; SIZE lowest = { .cx = max_width + 1, .cy = max_height + 1 };
DWORD i = 0; DWORD i = 0;
DEVMODE m; DEVMODE m;
@ -227,7 +227,7 @@ BOOL util_get_lowest_resolution(
m.dmPelsWidth < lowest.cx && m.dmPelsWidth < lowest.cx &&
m.dmPelsHeight < lowest.cy) m.dmPelsHeight < lowest.cy)
{ {
int res_ratio = (int)((((float)m.dmPelsWidth / m.dmPelsHeight) + 0.005f) * 100); int res_ratio = (int)((((float)m.dmPelsWidth / m.dmPelsHeight) + 0.005f) * 10);
if (res_ratio == org_ratio) if (res_ratio == org_ratio)
{ {