diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-10-30 21:43:59 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-10-31 01:44:48 +0000 |
commit | 7eee526e6ab37f89d370de52e92d3cef36f1cf2b (patch) | |
tree | ec22ffd6c10d89165e4b98740a3092692cdf9362 /firmware/target/hosted/android/pcm-android.c | |
parent | fe2d52cc7d0180acff26349f2904fba854de6fbc (diff) | |
download | rockbox-7eee526e6ab37f89d370de52e92d3cef36f1cf2b.tar.gz rockbox-7eee526e6ab37f89d370de52e92d3cef36f1cf2b.zip |
fix red introduced in the android pcm driver (rev fe2d52c)
Change-Id: I2fa160fd39842a5434cf11573b50061786e610ca
Diffstat (limited to 'firmware/target/hosted/android/pcm-android.c')
-rw-r--r-- | firmware/target/hosted/android/pcm-android.c | 2 |
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 | ||
163 | void pcm_play_dma_stop(void) | 163 | void pcm_play_dma_stop(void) |