summaryrefslogtreecommitdiff
path: root/apps/gui/bitmap/list.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2013-02-12 21:00:05 +1100
committerJonathan Gordon <rockbox@jdgordon.info>2013-02-12 21:01:13 +1100
commitaaf30651df27e0eb6fab876502fa1e6c084160bf (patch)
tree57601fbe5e54ed290bc6c966b059af801bd0d1bb /apps/gui/bitmap/list.c
parent69228f92dbddc9940166c0d7af2b4c79d55f85e7 (diff)
downloadrockbox-aaf30651df27e0eb6fab876502fa1e6c084160bf.tar.gz
rockbox-aaf30651df27e0eb6fab876502fa1e6c084160bf.zip
skin_engine: Add a debug screen to display skin ram usage
Change-Id: Ida9c33211d9360ac88e30a2cf8df9f191bee8b45
Diffstat (limited to 'apps/gui/bitmap/list.c')
-rw-r--r--apps/gui/bitmap/list.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/gui/bitmap/list.c b/apps/gui/bitmap/list.c
index 191446e186..ede0de8881 100644
--- a/apps/gui/bitmap/list.c
+++ b/apps/gui/bitmap/list.c
@@ -277,6 +277,7 @@ void list_draw(struct screen *display, struct gui_synclist *list)
277 list_icons.x += indent; 277 list_icons.x += indent;
278 list_text_vp->x += indent; 278 list_text_vp->x += indent;
279 } 279 }
280 list_icons.width -= indent;
280 list_text_vp->width -= indent; 281 list_text_vp->width -= indent;
281 } 282 }
282 283
@@ -392,6 +393,7 @@ void list_draw(struct screen *display, struct gui_synclist *list)
392 list_icons.x -= indent; 393 list_icons.x -= indent;
393 list_text_vp->x -= indent; 394 list_text_vp->x -= indent;
394 } 395 }
396 list_icons.width += indent;
395 list_text_vp->width += indent; 397 list_text_vp->width += indent;
396 } 398 }
397 } 399 }