From 95a828bcdbfe26d4a80793fb62b5a2a53319635c Mon Sep 17 00:00:00 2001 From: Fred Bauer Date: Sun, 20 Nov 2011 17:49:47 +0000 Subject: 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 --- firmware/font.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'firmware') diff --git a/firmware/font.c b/firmware/font.c index 5dd080b89c..8b63b80f45 100644 --- a/firmware/font.c +++ b/firmware/font.c @@ -208,8 +208,8 @@ static int glyph_bytes( struct font *pf, int width ) /* Load memory font */ static struct font* font_load_in_memory(struct font* pf, - int32_t noffset, - int32_t nwidth ) + int32_t nwidth, + int32_t noffset ) { int i; /* variable font data*/ -- cgit v1.2.3