From ecb09930db4b21d6bdafb5cd8ac65b8b418e66e8 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 1 Dec 2023 00:06:58 -0600 Subject: [PATCH] [turbine/glfw] Partially revert debug change --- src/turbine/glfw/gfx.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/turbine/glfw/gfx.cpp b/src/turbine/glfw/gfx.cpp index a096c38e..da5f85d4 100644 --- a/src/turbine/glfw/gfx.cpp +++ b/src/turbine/glfw/gfx.cpp @@ -220,9 +220,9 @@ ox::Error initGfx(Context &ctx) noexcept { glfwWindowHint(GLFW_RESIZABLE, GLFW_TRUE); auto cstr = ox_malloca(ctx.keelCtx.appName.bytes() + 1, char); ox_strncpy(cstr.get(), ctx.keelCtx.appName.data(), ctx.keelCtx.appName.bytes()); - //constexpr auto Scale = 5; - //gctx.window = glfwCreateWindow(240 * Scale, 160 * Scale, cstr, nullptr, nullptr); - gctx.window = glfwCreateWindow(868, 741, cstr.get(), nullptr, nullptr); + constexpr auto Scale = 5; + gctx.window = glfwCreateWindow(240 * Scale, 160 * Scale, cstr.get(), nullptr, nullptr); + //gctx.window = glfwCreateWindow(868, 741, cstr.get(), nullptr, nullptr); if (gctx.window == nullptr) { return OxError(1, "Could not open GLFW window"); }