From 323e375d248a501349526c122d0975c6517d3cc5 Mon Sep 17 00:00:00 2001 From: iProgramInCpp Date: Fri, 3 Nov 2023 03:02:15 +0200 Subject: [PATCH] * Update scaling method a bit --- source/client/app/Minecraft.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/client/app/Minecraft.cpp b/source/client/app/Minecraft.cpp index fdc1c8e..bff78ae 100644 --- a/source/client/app/Minecraft.cpp +++ b/source/client/app/Minecraft.cpp @@ -974,7 +974,7 @@ float Minecraft::getBestScaleForThisScreenSize(int width, int height) if (height > 1600) return 1.0f / 4.0f; - if (height > 1000) + if (height > 800) return 1.0f / 3.0f; if (height > 400)