summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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};