[turbine] Remove dead code

This commit is contained in:
Gary Talent 2023-12-09 00:31:54 -06:00
parent def994f406
commit 40a3c28fbf

View File

@ -9,8 +9,6 @@
#include <imgui_impl_opengl3.h>
#endif
#include <ox/std/defines.hpp>
#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 {