From 031e58428cb7a6ed2d5bd91576cc992d77b32148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Mon, 15 Aug 2016 01:45:20 +0200 Subject: [PATCH] Fixed unrecognized keyboard input in mesh example. --- mesh/mesh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesh/mesh.cpp b/mesh/mesh.cpp index b02aa90c..5075c4c9 100644 --- a/mesh/mesh.cpp +++ b/mesh/mesh.cpp @@ -613,7 +613,7 @@ public: { switch (keyCode) { - case 0x57: + case KEY_W: case GAMEPAD_BUTTON_A: wireframe = !wireframe; reBuildCommandBuffers();