From fcaec358f688bba6760cc44421b35e6b3d90a853 Mon Sep 17 00:00:00 2001 From: Ian C Date: Sat, 7 Oct 2006 00:21:12 +0000 Subject: First working version (3D Monster Maze playable!) --- arm9/source/keyboard.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'arm9/source/keyboard.c') diff --git a/arm9/source/keyboard.c b/arm9/source/keyboard.c index d33346d..31b39a1 100644 --- a/arm9/source/keyboard.c +++ b/arm9/source/keyboard.c @@ -202,10 +202,10 @@ int SK_GetEvent(SoftKeyEvent *ev) { int x,y; - x = 2 + (f % 10) * 25; - y = 36 + (f / 10) * 30; + x = 3 + (f % 10) * 25; + y = 37 + (f / 10) * 30; - FB_Box(x, y, 26, 19, key_state[f].new_state ? white:black); + FB_Box(x, y, 25, 18, key_state[f].new_state ? white:black); } } } -- cgit v1.2.3