diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2011-11-08 10:09:33 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2011-11-08 10:09:33 +0000 |
| commit | f19f3efb078b2947638f6f7a7f209de44daf78b3 (patch) | |
| tree | 46ddfc7234b2de6e848d5bcd7630821d91a84f37 /apps/plugins/bubbles.c | |
| parent | 452a3ce2742949e184d6bc9c9b1f7985dae3e874 (diff) | |
| download | rockbox-f19f3efb078b2947638f6f7a7f209de44daf78b3.zip rockbox-f19f3efb078b2947638f6f7a7f209de44daf78b3.tar.gz rockbox-f19f3efb078b2947638f6f7a7f209de44daf78b3.tar.bz2 rockbox-f19f3efb078b2947638f6f7a7f209de44daf78b3.tar.xz | |
Redo r30826 (and hopefully not reintroduce font issues) which cleans up the font API. FONT_UI is deprecated, use screens[screen].getuifont() instead (and .setuifont() to set it after a font has been loaded)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30932 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/bubbles.c')
| -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 d9f76f7..1c4bbca 100644 --- a/apps/plugins/bubbles.c +++ b/apps/plugins/bubbles.c @@ -1435,7 +1435,7 @@ static void bubbles_drawboard(struct game_context* bb) { /* clear screen */ rb->lcd_clear_display(); - int font = rb->screens[SCREEN_MAIN]->getfont(); + int font = rb->screens[SCREEN_MAIN]->getuifont(); h = rb->font_get(font)->height + 1; /* draw background */ #ifdef HAVE_LCD_COLOR |