From ea217285c0863f5535c204abf39ea9cd8f2b1390 Mon Sep 17 00:00:00 2001 From: elasota Date: Sat, 25 Apr 2020 00:53:43 -0400 Subject: [PATCH] Decrease scale granularity to 2.0 --- GpApp/Environ.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GpApp/Environ.cpp b/GpApp/Environ.cpp index 93b78f8..656cef5 100644 --- a/GpApp/Environ.cpp +++ b/GpApp/Environ.cpp @@ -357,7 +357,7 @@ public: double xMul = static_cast(physicalWidth) / 640; double yMul = static_cast(physicalHeight) / 480; - double granularity = 4.0; + double granularity = 2.0; xMul = floor(xMul * granularity) / granularity; yMul = floor(yMul * granularity) / granularity;