diff options
author | Michael Pavone <pavone@retrodev.com> | 2018-04-11 00:17:23 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2018-04-11 00:17:23 -0700 |
commit | 414a5cadd36a3ec724e1b7dafc6a897857071430 (patch) | |
tree | 40dde46bcbb06b46ffd6fa62012ee68421e6594b | |
parent | dfeebb19dd02e127701ffc3b62fc7beb722f948a (diff) |
Fix regression in right audio channel
-rwxr-xr-x | render_sdl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/render_sdl.c b/render_sdl.c index f9001d7..e871014 100755 --- a/render_sdl.c +++ b/render_sdl.c @@ -300,7 +300,7 @@ void render_put_stereo_sample(audio_source *src, int16_t left, int16_t right) } } src->last_left = left; - src->last_right = left; + src->last_right = right; } static SDL_Joystick * joysticks[MAX_JOYSTICKS]; |