haiku: Patched to compile.

Ryan C. Gordon 2017-01-06 03:15:27 -05:00
parent 3443dc19f9
commit 345c5989f1
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ FillSound(void *device, void *stream, size_t len,
if (audio->stream == NULL) { /* no conversion necessary. */
SDL_LockMutex(audio->mixer_lock);
callback(audio->spec.userdata, stream, len);
callback(audio->spec.userdata, (Uint8 *) stream, len);
SDL_UnlockMutex(audio->mixer_lock);
} else { /* streaming/converting */
const int stream_len = audio->callbackspec.size;