diff options
author | Ian C <ianc@noddybox.co.uk> | 2006-10-07 00:21:12 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2006-10-07 00:21:12 +0000 |
commit | fcaec358f688bba6760cc44421b35e6b3d90a853 (patch) | |
tree | 99d92a6231d2319c3f1a7551a93f91a91ffa953f /source/keyboard.c | |
parent | b16b3120a84f1b180e874367d3101264479a595f (diff) |
First working version (3D Monster Maze playable!)
Diffstat (limited to 'source/keyboard.c')
-rw-r--r-- | source/keyboard.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/keyboard.c b/source/keyboard.c index d33346d..31b39a1 100644 --- a/source/keyboard.c +++ b/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); } } } |