summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-10-19 00:26:46 +0000
committerThomas Martitz <kugel@rockbox.org>2009-10-19 00:26:46 +0000
commit6225f388b86746f19159df22acf0da53326051b2 (patch)
tree199f9f03c38e0e04e6226033078f8e4a950ac1ce /apps
parentc26949c54ba9442cc8095d0775d43644f34627a3 (diff)
downloadrockbox-6225f388b86746f19159df22acf0da53326051b2.tar.gz
rockbox-6225f388b86746f19159df22acf0da53326051b2.zip
Reorder members for more efficient alignment.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23254 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/gui/skin_engine/wps_internals.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gui/skin_engine/wps_internals.h b/apps/gui/skin_engine/wps_internals.h
index 638fb0a081..e0e2882556 100644
--- a/apps/gui/skin_engine/wps_internals.h
+++ b/apps/gui/skin_engine/wps_internals.h
@@ -77,14 +77,14 @@
77 77
78#ifdef HAVE_LCD_BITMAP 78#ifdef HAVE_LCD_BITMAP
79struct gui_img { 79struct gui_img {
80 char label;
81 struct bitmap bm;
82 struct viewport* vp; /* The viewport to display this image in */ 80 struct viewport* vp; /* The viewport to display this image in */
83 short int x; /* x-pos */ 81 short int x; /* x-pos */
84 short int y; /* y-pos */ 82 short int y; /* y-pos */
85 short int num_subimages; /* number of sub-images */ 83 short int num_subimages; /* number of sub-images */
86 short int subimage_height; /* height of each sub-image */ 84 short int subimage_height; /* height of each sub-image */
87 short int display; /* -1 for no display, 0..n to display a subimage */ 85 short int display; /* -1 for no display, 0..n to display a subimage */
86 struct bitmap bm;
87 char label;
88 bool loaded; /* load state */ 88 bool loaded; /* load state */
89 bool always_display; /* not using the preload/display mechanism */ 89 bool always_display; /* not using the preload/display mechanism */
90}; 90};