diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2009-10-26 07:21:05 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2009-10-26 07:21:05 +0000 |
commit | 58c07fbfa8f51b28ef33d61ec9f505499b84109c (patch) | |
tree | 035286edd747f71d5d220930cc68b19a428dbf8f /apps/plugins/codebuster.c | |
parent | 03986d4ec73a5d1a03f35f250212420866f309a4 (diff) | |
download | rockbox-58c07fbfa8f51b28ef33d61ec9f505499b84109c.tar.gz rockbox-58c07fbfa8f51b28ef33d61ec9f505499b84109c.tar.bz2 rockbox-58c07fbfa8f51b28ef33d61ec9f505499b84109c.zip |
FS#10724 - fix alignment issue in Codebuster by Clément Pit--Claudel
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23357 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/codebuster.c')
-rw-r--r-- | apps/plugins/codebuster.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/codebuster.c b/apps/plugins/codebuster.c index e63c884a74..2de1ce3b4d 100644 --- a/apps/plugins/codebuster.c +++ b/apps/plugins/codebuster.c @@ -239,7 +239,7 @@ static void draw_guess(int line, struct mm_line* guess, int cur_guess, } static void draw_score(int line, struct mm_line* guess) { - int cur_y = Y_MARGIN + 2 * line_h * line; + int cur_y = (Y_MARGIN + MARGIN) + 2 * line_h * line; int l_margin = X_MARGIN + true_guess_w + MARGIN; int tick = 0; |