move a #ifdef so the full amount of user choosable skin fonts are avilable on non remote targets (i.e 2-9 inclusive)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24958 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
8717c1eaa1
commit
6434e760fc
1 changed files with 2 additions and 2 deletions
|
@ -935,10 +935,10 @@ static int parse_viewport(const char *wps_bufptr,
|
|||
else
|
||||
vp->flags &= ~VP_FLAG_ALIGN_RIGHT; /* ignore right-to-left languages */
|
||||
|
||||
/* increment because font=2 and FONT_UI_REMOTE is ambiguous */
|
||||
#ifdef HAVE_REMOTE_LCD
|
||||
/* increment because font==2 and FONT_UI_REMOTE is ambiguous */
|
||||
if (vp->font > FONT_UI)
|
||||
vp->font++;
|
||||
#ifdef HAVE_REMOTE_LCD
|
||||
if (vp->font == FONT_UI && curr_screen == SCREEN_REMOTE)
|
||||
vp->font = FONT_UI_REMOTE;
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue