summaryrefslogtreecommitdiff
path: root/apps/abrepeat.h
diff options
context:
space:
mode:
authorTeruaki Kawashima <teru@rockbox.org>2010-03-07 12:51:23 +0000
committerTeruaki Kawashima <teru@rockbox.org>2010-03-07 12:51:23 +0000
commitf50885534ec6fa78c2c89e275c5ffd592be5cd2e (patch)
treeb60a7d0f7a1c5124cddedeac585c0bb1c1a11d4f /apps/abrepeat.h
parent1e9789879ff620c78b594801bf37abc256bdcc2b (diff)
downloadrockbox-f50885534ec6fa78c2c89e275c5ffd592be5cd2e.tar.gz
rockbox-f50885534ec6fa78c2c89e275c5ffd592be5cd2e.zip
Pass width instead of x+width to ab_draw_markers()/cue_draw_markers() and don't recalculate the width in these functions.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25053 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/abrepeat.h')
-rw-r--r--apps/abrepeat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/abrepeat.h b/apps/abrepeat.h
index 3bed56678d..3c9853f2c5 100644
--- a/apps/abrepeat.h
+++ b/apps/abrepeat.h
@@ -49,7 +49,7 @@ void ab_end_of_track_report(void);
49#ifdef HAVE_LCD_BITMAP 49#ifdef HAVE_LCD_BITMAP
50#include "screen_access.h" 50#include "screen_access.h"
51void ab_draw_markers(struct screen * screen, int capacity, 51void ab_draw_markers(struct screen * screen, int capacity,
52 int x0, int x1, int y, int h); 52 int x, int y, int w, int h);
53#endif 53#endif
54 54
55/* These functions really need to be inlined for speed */ 55/* These functions really need to be inlined for speed */