forked from len0rd/rockbox
Changed the comment to more accurately reflect how it works
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20233 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e05e7932f3
commit
03dcedbbea
1 changed files with 4 additions and 2 deletions
|
@ -58,7 +58,7 @@
|
||||||
/* wps_data*/
|
/* wps_data*/
|
||||||
|
|
||||||
#ifdef HAVE_LCD_BITMAP
|
#ifdef HAVE_LCD_BITMAP
|
||||||
struct gui_img{
|
struct gui_img {
|
||||||
struct bitmap bm;
|
struct bitmap bm;
|
||||||
struct viewport* vp; /* The viewport to display this image in */
|
struct viewport* vp; /* The viewport to display this image in */
|
||||||
short int x; /* x-pos */
|
short int x; /* x-pos */
|
||||||
|
@ -73,7 +73,9 @@ struct gui_img{
|
||||||
struct progressbar {
|
struct progressbar {
|
||||||
/* regular pb */
|
/* regular pb */
|
||||||
short x;
|
short x;
|
||||||
/* Negative if y is line number based (-line_num-1), positive if set explicitely */
|
/* >=0: explicitly set in the tag -> y-coord within the viewport
|
||||||
|
<0 : not set in the tag -> negated 1-based line number within
|
||||||
|
the viewport. y-coord will be computed based on the font height */
|
||||||
short y;
|
short y;
|
||||||
short width;
|
short width;
|
||||||
short height;
|
short height;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue