aboutsummaryrefslogtreecommitdiff
path: root/shell/audio
diff options
context:
space:
mode:
Diffstat (limited to 'shell/audio')
-rw-r--r--shell/audio/sdl/sound_output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/audio/sdl/sound_output.c b/shell/audio/sdl/sound_output.c
index ae1ab83..0758718 100644
--- a/shell/audio/sdl/sound_output.c
+++ b/shell/audio/sdl/sound_output.c
@@ -46,7 +46,7 @@ static void sdl_write_buffer(uint8_t* data, int32_t len)
SDL_UnlockAudio();
usleep(1000);
SDL_LockAudio();
- }
+ }
*(int32_t*)((char*)(buffer + buf_write_pos)) = *(int32_t*)((char*)(data + i));
//memcpy(buffer + buf_write_pos, data + i, 4);
buf_write_pos = (buf_write_pos + 4) % BUFFSIZE;