fix double comparison

This commit is contained in:
Alanscut 2019-12-06 17:11:12 +08:00
parent 98ecc0245a
commit 1f970e7db3
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ static int supports_full_hd(const char * const monitor)
goto end;
}
if ((width->valuedouble == 1920) && (height->valuedouble == 1080))
if (compare_double(width->valuedouble, 1920) && compare_double(height->valuedouble, 1080))
{
status = 1;
goto end;