SDL: Fix uninitialized member
Jeffrey Pfau jeffrey@endrift.com
Sun, 11 Oct 2015 20:39:49 -0700
1 files changed,
1 insertions(+),
0 deletions(-)
jump to
M
src/platform/sdl/sdl-audio.c
→
src/platform/sdl/sdl-audio.c
@@ -42,6 +42,7 @@ GBALog(0, GBA_LOG_ERROR, "Could not open SDL sound system");
return false; } context->samples = context->obtainedSpec.samples; + context->gba = 0; if (threadContext) { context->thread = threadContext;