summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/gui/gwps.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/gui/gwps.h b/apps/gui/gwps.h
index 8d0cc00dc0..494d12a084 100644
--- a/apps/gui/gwps.h
+++ b/apps/gui/gwps.h
@@ -61,11 +61,11 @@
61struct gui_img{ 61struct gui_img{
62 struct bitmap bm; 62 struct bitmap bm;
63 struct viewport* vp; /* The viewport to display this image in */ 63 struct viewport* vp; /* The viewport to display this image in */
64 int x; /* x-pos */ 64 short int x; /* x-pos */
65 int y; /* y-pos */ 65 short int y; /* y-pos */
66 int num_subimages; /* number of sub-images */ 66 short int num_subimages; /* number of sub-images */
67 int subimage_height; /* height of each sub-image */ 67 short int subimage_height; /* height of each sub-image */
68 int display; /* -1 for no display, 0..n to display a subimage */ 68 short int display; /* -1 for no display, 0..n to display a subimage */
69 bool loaded; /* load state */ 69 bool loaded; /* load state */
70 bool always_display; /* not using the preload/display mechanism */ 70 bool always_display; /* not using the preload/display mechanism */
71}; 71};
@@ -276,7 +276,7 @@ enum wps_token_type {
276}; 276};
277 277
278struct wps_token { 278struct wps_token {
279 enum wps_token_type type; 279 unsigned char type; /* enough to store the token type */
280 280
281 /* Whether the tag (e.g. track name or the album) refers the 281 /* Whether the tag (e.g. track name or the album) refers the
282 current or the next song (false=current, true=next) */ 282 current or the next song (false=current, true=next) */