From 40a3c28fbf06d10863fa994109d50a2011f354a3 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 9 Dec 2023 00:31:54 -0600 Subject: [PATCH] [turbine] Remove dead code --- src/turbine/src/glfw/gfx.cpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/turbine/src/glfw/gfx.cpp b/src/turbine/src/glfw/gfx.cpp index bdb50c32..9b116f6c 100644 --- a/src/turbine/src/glfw/gfx.cpp +++ b/src/turbine/src/glfw/gfx.cpp @@ -9,8 +9,6 @@ #include #endif -#include - #include "context.hpp" namespace turbine { @@ -65,16 +63,6 @@ static void handleKeyPress(Context &ctx, int key, bool down) noexcept { if (eventHandler) { eventHandler(ctx, k, down); } - //if constexpr(ox::defines::Debug) { - // switch (key) { - // case GLFW_KEY_ESCAPE: - // case GLFW_KEY_Q: - // oxIgnoreError(requestShutdown(ctx)); - // break; - // default: - // break; - // } - //} } static void handleGlfwCursorPosEvent(GLFWwindow*, double, double) noexcept {