summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy/rbsound.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/rockboy/rbsound.c')
-rw-r--r--apps/plugins/rockboy/rbsound.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/rockboy/rbsound.c b/apps/plugins/rockboy/rbsound.c
index 3eebea8bef..6371212ca8 100644
--- a/apps/plugins/rockboy/rbsound.c
+++ b/apps/plugins/rockboy/rbsound.c
@@ -35,7 +35,7 @@ static unsigned short *gmbuf;
35 35
36static bool newly_started; 36static bool newly_started;
37 37
38void get_more(unsigned char** start, long* size) 38void get_more(unsigned char** start, size_t* size)
39{ 39{
40#ifdef ONEBUF 40#ifdef ONEBUF
41 doneplay=1; 41 doneplay=1;
@@ -108,7 +108,7 @@ int pcm_submit(void)
108 108
109 if(newly_started) 109 if(newly_started)
110 { 110 {
111 rb->pcm_play_data(&get_more); 111 rb->pcm_play_data(&get_more,NULL,0);
112 newly_started = false; 112 newly_started = false;
113 } 113 }
114 114