From e4c5f817ead35aad14671f0efd1ae5cc48bad57f Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Fri, 14 Jun 2019 09:51:29 -0400 Subject: [PATCH] =?UTF-8?q?Decrease=20resolution=20to=20VGA=20640=20=C3=97?= =?UTF-8?q?=20480.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.cpp b/src/window.cpp index 0b77b0cf..02082ecd 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -217,7 +217,7 @@ Window::Window() { glfwGetWindowContentScale(win, &contentScale, NULL); INFO("Window content scale: %f", contentScale); - glfwSetWindowSizeLimits(win, 800, 600, GLFW_DONT_CARE, GLFW_DONT_CARE); + glfwSetWindowSizeLimits(win, 640, 480, GLFW_DONT_CARE, GLFW_DONT_CARE); if (settings::windowSize.isZero()) { glfwMaximizeWindow(win); }