summaryrefslogtreecommitdiff
path: root/apps/gui/skin_engine/wps_internals.h
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-09-25 18:36:28 +0000
committerThomas Martitz <kugel@rockbox.org>2009-09-25 18:36:28 +0000
commitba8fbb0b9bb8db9f654b0120809e343516c02531 (patch)
treea182db2b938057580b6ecfab8d3262865e9b1d13 /apps/gui/skin_engine/wps_internals.h
parentd045f59989137afc5e9138277bcb24dcfc4c5f3f (diff)
downloadrockbox-ba8fbb0b9bb8db9f654b0120809e343516c02531.tar.gz
rockbox-ba8fbb0b9bb8db9f654b0120809e343516c02531.zip
Rename struct skin_albumart members to be consistent with similar members of other structs. the albumart_ prefix is redundant.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22836 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/skin_engine/wps_internals.h')
-rw-r--r--apps/gui/skin_engine/wps_internals.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/gui/skin_engine/wps_internals.h b/apps/gui/skin_engine/wps_internals.h
index a5fc70d1ef..177a376008 100644
--- a/apps/gui/skin_engine/wps_internals.h
+++ b/apps/gui/skin_engine/wps_internals.h
@@ -226,15 +226,15 @@ struct touchregion {
226struct skin_albumart { 226struct skin_albumart {
227 /* Album art support */ 227 /* Album art support */
228 struct viewport *vp;/* The viewport this is in */ 228 struct viewport *vp;/* The viewport this is in */
229 int albumart_x; 229 int x;
230 int albumart_y; 230 int y;
231 int albumart_max_width; 231 int width;
232 int albumart_max_height; 232 int height;
233 233
234 bool draw; 234 bool draw;
235 unsigned char albumart_xalign; /* WPS_ALBUMART_ALIGN_LEFT, _CENTER, _RIGHT */ 235 unsigned char xalign; /* WPS_ALBUMART_ALIGN_LEFT, _CENTER, _RIGHT */
236 unsigned char albumart_yalign; /* WPS_ALBUMART_ALIGN_TOP, _CENTER, _BOTTOM */ 236 unsigned char yalign; /* WPS_ALBUMART_ALIGN_TOP, _CENTER, _BOTTOM */
237 unsigned char wps_uses_albumart; /* WPS_ALBUMART_NONE, _CHECK, _LOAD */ 237 unsigned char state; /* WPS_ALBUMART_NONE, _CHECK, _LOAD */
238}; 238};
239#endif 239#endif
240 240