Fix scale issue

This commit is contained in:
elasota
2020-10-24 10:03:22 -04:00
parent 36eb111d26
commit 3f6f540bf5

View File

@@ -328,7 +328,7 @@ public:
{
double minMul = 1.0;
if (isAutoScale || physicalWidth < 640 && physicalHeight < 480)
if (isAutoScale || physicalWidth < 640 || physicalHeight < 480)
{
double xMul = static_cast<double>(physicalWidth) / 640.0;
double yMul = static_cast<double>(physicalHeight) / 480.0;