Fix parameter order in font_load_in_memory(). FS#12395.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31033 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Fred Bauer 2011-11-20 17:49:47 +00:00
parent fdfc88f38b
commit 95a828bcdb

View File

@ -208,8 +208,8 @@ static int glyph_bytes( struct font *pf, int width )
/* Load memory font */ /* Load memory font */
static struct font* font_load_in_memory(struct font* pf, static struct font* font_load_in_memory(struct font* pf,
int32_t noffset, int32_t nwidth,
int32_t nwidth ) int32_t noffset )
{ {
int i; int i;
/* variable font data*/ /* variable font data*/