* Fix the DEL key => Square
This commit is contained in:
jean.chalard
2008-11-16 07:17:17 +00:00
parent 480b291ad4
commit 138298833b
+2 -2
View File
@@ -64,7 +64,7 @@ static u32 gPSPKeyMasks[] =
#define KEY_BACKSPACE 8 #define KEY_BACKSPACE 8
#define KEY_RETURN 10 #define KEY_RETURN 10
#define KEY_DELETE 4 #define KEY_DELETE 127
#define KEY_SPACE ' ' #define KEY_SPACE ' '
#define KEY_ESCAPE 27 #define KEY_ESCAPE 27
@@ -237,9 +237,9 @@ void JGEControl()
void Update(int dt) void Update(int dt)
{ {
JGEControl();
g_engine->SetDelta(dt); g_engine->SetDelta(dt);
g_engine->Update(); g_engine->Update();
JGEControl();
} }