Fix typo in the new default values for %V, so that the background color is actually set on 16-bit targets.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17692 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Magnus Holmgren 2008-06-05 15:21:08 +00:00
parent 5105d8e4ad
commit c2416bf8b9

View file

@ -652,7 +652,7 @@ static int parse_viewport(const char *wps_bufptr,
if ((valid&(1<<PL_FG)) == 0)
vp->fg_pattern = global_settings.fg_color;
if ((valid&(1<<PL_BG)) == 0)
vp->fg_pattern = global_settings.bg_color;
vp->bg_pattern = global_settings.bg_color;
}
#endif