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:
parent
fdfc88f38b
commit
95a828bcdb
1 changed files with 2 additions and 2 deletions
|
@ -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*/
|
||||||
|
|
Loading…
Reference in a new issue