From 138298833b925600567488d200a0852963a6df2e Mon Sep 17 00:00:00 2001 From: "jean.chalard" Date: Sun, 16 Nov 2008 07:17:17 +0000 Subject: [PATCH] J : * Fix the DEL key => Square --- JGE/src/linuxmain.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/JGE/src/linuxmain.cpp b/JGE/src/linuxmain.cpp index f906edb86..337ceff26 100644 --- a/JGE/src/linuxmain.cpp +++ b/JGE/src/linuxmain.cpp @@ -64,7 +64,7 @@ static u32 gPSPKeyMasks[] = #define KEY_BACKSPACE 8 #define KEY_RETURN 10 -#define KEY_DELETE 4 +#define KEY_DELETE 127 #define KEY_SPACE ' ' #define KEY_ESCAPE 27 @@ -237,9 +237,9 @@ void JGEControl() void Update(int dt) { - JGEControl(); g_engine->SetDelta(dt); g_engine->Update(); + JGEControl(); }