diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2009-08-02 21:38:03 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2009-08-02 21:38:03 +0000 |
| commit | 5291d09aaac97b711de423453f339aac04514998 (patch) | |
| tree | 94e3c7f4231780c5b0d0befc90adbffe01cf360a /apps/plugins | |
| parent | d66bf05ad250c9702c59397034f0ac387b14e323 (diff) | |
| download | rockbox-5291d09aaac97b711de423453f339aac04514998.zip rockbox-5291d09aaac97b711de423453f339aac04514998.tar.gz rockbox-5291d09aaac97b711de423453f339aac04514998.tar.bz2 rockbox-5291d09aaac97b711de423453f339aac04514998.tar.xz | |
Fix red - overlooked renaming in 1 place.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22122 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/bubbles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/bubbles.c b/apps/plugins/bubbles.c index 2e8aaaa..6126fb7 100644 --- a/apps/plugins/bubbles.c +++ b/apps/plugins/bubbles.c @@ -1540,7 +1540,7 @@ static void bubbles_drawboard(struct game_context* bb) { rb->lcd_getstringsize(next, &w1, NULL); #ifndef NEXT_BB_X - rb->lcd_putsxy(XOFS/2-w/2, SHOTY-h, next); + rb->lcd_putsxy(XOFS/2-w1/2, SHOTY-h, next); #else rb->lcd_putsxy(NEXT_BB_X+(NEXT_BB_WIDTH/2-w1/2), NEXT_BB_Y, next); #endif |