summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-07-03 20:42:42 +0000
committerThomas Martitz <kugel@rockbox.org>2009-07-03 20:42:42 +0000
commit9ecaa5562d2b00fa69ad9d0bd168bf2c154ada0c (patch)
tree809107ced99021844748bbc51415ed2788dec1a9 /apps
parent53be2752d3c2b6c90483a92f340f5bb6f7ef0eb8 (diff)
downloadrockbox-9ecaa5562d2b00fa69ad9d0bd168bf2c154ada0c.tar.gz
rockbox-9ecaa5562d2b00fa69ad9d0bd168bf2c154ada0c.zip
Still failing at git-svn, but I won't give up! The previous commit
wasn't meant to be committed. I'll go read up on getting git svn commit-diff right :( git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21624 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/abrepeat.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/apps/abrepeat.c b/apps/abrepeat.c
index f6ca3096cb..5fbd880a17 100644
--- a/apps/abrepeat.c
+++ b/apps/abrepeat.c
@@ -24,14 +24,12 @@
24 24
25#ifdef AB_REPEAT_ENABLE 25#ifdef AB_REPEAT_ENABLE
26 26
27unsigned int test = 1;
28unsigned int ab_A_marker IDATA_ATTR = AB_MARKER_NONE; 27unsigned int ab_A_marker IDATA_ATTR = AB_MARKER_NONE;
29unsigned int ab_B_marker IDATA_ATTR = AB_MARKER_NONE; 28unsigned int ab_B_marker IDATA_ATTR = AB_MARKER_NONE;
30bool foo = false; 29
31#if (CONFIG_CODEC == SWCODEC) 30#if (CONFIG_CODEC == SWCODEC)
32void ab_end_of_track_report(void) 31void ab_end_of_track_report(void)
33{ 32{
34 test = 2;
35 if ( ab_A_marker_set() && ! ab_B_marker_set() ) 33 if ( ab_A_marker_set() && ! ab_B_marker_set() )
36 { 34 {
37 ab_jump_to_A_marker(); 35 ab_jump_to_A_marker();
@@ -40,7 +38,6 @@ void ab_end_of_track_report(void)
40#else 38#else
41static int ab_audio_event_handler(unsigned short event, unsigned long data) 39static int ab_audio_event_handler(unsigned short event, unsigned long data)
42{ 40{
43 foo = true;
44 int rc = AUDIO_EVENT_RC_IGNORED; 41 int rc = AUDIO_EVENT_RC_IGNORED;
45 if ( ab_repeat_mode_enabled() ) 42 if ( ab_repeat_mode_enabled() )
46 { 43 {