Commit 4073a6694f737f65b93261378a4a0eb93fbaba76

Ryan C. Gordon 2017-05-18T15:33:17

audio: One more callbackspec fix (thanks, Simon!).

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/audio/SDL_audio.c b/src/audio/SDL_audio.c
index ae076b2..95d1d9d 100644
--- a/src/audio/SDL_audio.c
+++ b/src/audio/SDL_audio.c
@@ -732,7 +732,7 @@ SDL_CaptureAudio(void *devicep)
     const Uint32 delay = ((device->spec.samples * 1000) / device->spec.freq);
     const int data_len = device->spec.size;
     Uint8 *data;
-    void *udata = device->spec.userdata;
+    void *udata = device->callbackspec.userdata;
     SDL_AudioCallback callback = device->callbackspec.callback;
 
     SDL_assert(device->iscapture);