1
0
Fork 0
forked from len0rd/rockbox

Reclaim a bit of binsize for non-lcd_bitmap targets

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22392 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Maurus Cuelenaere 2009-08-18 00:43:36 +00:00
parent 6ade4bb766
commit e1832591eb
3 changed files with 25 additions and 13 deletions

View file

@ -12670,13 +12670,16 @@
desc: in Settings -> General -> Display -> Status-/Scrollbar desc: in Settings -> General -> Display -> Status-/Scrollbar
user: core user: core
<source> <source>
*: "Scroll Bar Width" *: none
lcd_bitmap: "Scroll Bar Width"
</source> </source>
<dest> <dest>
*: "Scroll Bar Width" *: none
lcd_bitmap: "Scroll Bar Width"
</dest> </dest>
<voice> <voice>
*: "Scroll bar width" *: none
lcd_bitmap: "Scroll bar width"
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -12684,12 +12687,15 @@
desc: in Settings -> General -> Display -> Status-/Scrollbar desc: in Settings -> General -> Display -> Status-/Scrollbar
user: core user: core
<source> <source>
*: "Scroll Bar Position" *: none
lcd_bitmap: "Scroll Bar Position"
</source> </source>
<dest> <dest>
*: "Scroll Bar Position" *: none
lcd_bitmap: "Scroll Bar Position"
</dest> </dest>
<voice> <voice>
*: "Scroll bar position" *: none
lcd_bitmap: "Scroll bar position"
</voice> </voice>
</phrase> </phrase>

View file

@ -12580,13 +12580,16 @@
desc: in Settings -> General -> Display -> Status-/Scrollbar desc: in Settings -> General -> Display -> Status-/Scrollbar
user: core user: core
<source> <source>
*: "Scroll Bar Width" *: none
lcd_bitmap: "Scroll Bar Width"
</source> </source>
<dest> <dest>
*: "Scrollbar breedte" *: none
lcd_bitmap: "Scrollbar breedte"
</dest> </dest>
<voice> <voice>
*: "Scroll bar breedte" *: none
lcd_bitmap: "Scroll bar breedte"
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -12594,12 +12597,15 @@
desc: in Settings -> General -> Display -> Status-/Scrollbar desc: in Settings -> General -> Display -> Status-/Scrollbar
user: core user: core
<source> <source>
*: "Scroll Bar Position" *: none
lcd_bitmap: "Scroll Bar Position"
</source> </source>
<dest> <dest>
*: "Scrollbar positie" *: none
lcd_bitmap: "Scrollbar positie"
</dest> </dest>
<voice> <voice>
*: "Scroll bar positie" *: none
lcd_bitmap: "Scroll bar positie"
</voice> </voice>
</phrase> </phrase>

View file

@ -767,10 +767,10 @@ struct user_settings
unsigned char ui_vp_config[64]; /* viewport string for the lists */ unsigned char ui_vp_config[64]; /* viewport string for the lists */
#ifdef HAVE_REMOTE_LCD #ifdef HAVE_REMOTE_LCD
unsigned char remote_ui_vp_config[64]; /* viewport string for the remote lists */ unsigned char remote_ui_vp_config[64]; /* viewport string for the remote lists */
#endif
#endif #endif
int scrollbar_width; int scrollbar_width;
bool scrollbar_position; /* true=left false=right */ bool scrollbar_position; /* true=left false=right */
#endif
}; };
/** global variables **/ /** global variables **/