summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-10-30 21:43:59 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-10-31 01:44:48 +0000
commit7eee526e6ab37f89d370de52e92d3cef36f1cf2b (patch)
treeec22ffd6c10d89165e4b98740a3092692cdf9362
parentfe2d52cc7d0180acff26349f2904fba854de6fbc (diff)
downloadrockbox-7eee526e6ab37f89d370de52e92d3cef36f1cf2b.tar.gz
rockbox-7eee526e6ab37f89d370de52e92d3cef36f1cf2b.zip
fix red introduced in the android pcm driver (rev fe2d52c)
Change-Id: I2fa160fd39842a5434cf11573b50061786e610ca
-rw-r--r--firmware/target/hosted/android/pcm-android.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/hosted/android/pcm-android.c b/firmware/target/hosted/android/pcm-android.c
index 69fd06c6f7..4577c8078a 100644
--- a/firmware/target/hosted/android/pcm-android.c
+++ b/firmware/target/hosted/android/pcm-android.c
@@ -157,7 +157,7 @@ void pcm_play_dma_start(const void *addr, size_t size)
157 (*env_ptr)->CallVoidMethod(env_ptr, 157 (*env_ptr)->CallVoidMethod(env_ptr,
158 RockboxPCM_instance, 158 RockboxPCM_instance,
159 play_pause_method, 159 play_pause_method,
160 (int)pause); 160 0);
161} 161}
162 162
163void pcm_play_dma_stop(void) 163void pcm_play_dma_stop(void)