print 144 instead of 145 refresh rate as this rate is more common

This commit is contained in:
Linus Dierheimer
2021-04-23 21:13:50 +02:00
parent eddc01290a
commit c697f8ee80
+4
View File
@@ -64,6 +64,10 @@ static int parseRefreshRate(int32_t refreshRate)
else
refreshRate -= remainder;
//All other typicall refresh rates are dividable by 5
if(refreshRate == 145)
refreshRate = 144;
return refreshRate;
}