diff --git a/src/nostalgia/core/glfw/gfx.cpp b/src/nostalgia/core/glfw/gfx.cpp index 2b2d3306..1215beb8 100644 --- a/src/nostalgia/core/glfw/gfx.cpp +++ b/src/nostalgia/core/glfw/gfx.cpp @@ -71,7 +71,7 @@ static void handleGlfwCursorPosEvent(GLFWwindow*, double, double) noexcept { static void handleGlfwMouseButtonEvent(GLFWwindow *window, int, int, int) noexcept { const auto ctx = static_cast(glfwGetWindowUserPointer(window)); - ctx->uninterruptedRefreshes = 15; + ctx->uninterruptedRefreshes = 25; } static void handleGlfwWindowResize(GLFWwindow*, int, int) noexcept { @@ -79,7 +79,7 @@ static void handleGlfwWindowResize(GLFWwindow*, int, int) noexcept { static void handleGlfwKeyEvent(GLFWwindow *window, int key, int, int action, int) noexcept { const auto ctx = static_cast(glfwGetWindowUserPointer(window)); - ctx->uninterruptedRefreshes = 15; + ctx->uninterruptedRefreshes = 25; if (action == GLFW_PRESS) { handleKeyPress(ctx, key, true); } else if (action == GLFW_RELEASE) {