summaryrefslogtreecommitdiff
path: root/source/keyboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/keyboard.c')
-rw-r--r--source/keyboard.c6
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);
}
}
}