forked from len0rd/rockbox
progressbars are drawn inside viewports so all coords are viewport relative. so fix - for the x coord to be 0 instead of vp->x which never made sense (woops from 18months ago :p )
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27998 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
81bce3b5b3
commit
dbde63bfec
1 changed files with 1 additions and 1 deletions
|
@ -620,7 +620,7 @@ static int parse_progressbar_tag(struct skin_element* element,
|
||||||
if (!isdefault(param))
|
if (!isdefault(param))
|
||||||
pb->x = param->data.number;
|
pb->x = param->data.number;
|
||||||
else
|
else
|
||||||
pb->x = vp->x;
|
pb->x = 0;
|
||||||
param++;
|
param++;
|
||||||
|
|
||||||
if (!isdefault(param))
|
if (!isdefault(param))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue