From 9c3f017bf00d418217b06b2615511ba4423c4b45 Mon Sep 17 00:00:00 2001 From: retro-wertz Date: Wed, 1 Feb 2017 21:36:10 +0800 Subject: [PATCH] fix Dinothawr on xaudio/dsound https://github.com/libretro/RetroArch/issues/4540 --- audio/audio_thread_wrapper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/audio/audio_thread_wrapper.c b/audio/audio_thread_wrapper.c index 4e746039d9..01f4bcdf18 100644 --- a/audio/audio_thread_wrapper.c +++ b/audio/audio_thread_wrapper.c @@ -283,8 +283,8 @@ static const audio_driver_t audio_thread = { **/ bool audio_init_thread(const audio_driver_t **out_driver, void **out_data, const char *device, unsigned audio_out_rate, - unsigned *new_rate, unsigned block_frames, - unsigned latency, const audio_driver_t *drv) + unsigned *new_rate, unsigned latency, + unsigned block_frames, const audio_driver_t *drv) { audio_thread_t *thr = (audio_thread_t*)calloc(1, sizeof(*thr)); if (!thr)