mirror of
https://github.com/yawut/SDL.git
synced 2026-04-21 16:17:28 -05:00
wiiu: Disable DRC surround mode as it causes distortion
This commit is contained in:
parent
9b21f4847e
commit
541c794cd2
|
|
@ -34,6 +34,7 @@
|
|||
|
||||
#include <sndcore2/core.h>
|
||||
#include <sndcore2/voice.h>
|
||||
#include <sndcore2/drcvs.h>
|
||||
#include <coreinit/core.h>
|
||||
#include <coreinit/cache.h>
|
||||
#include <coreinit/thread.h>
|
||||
|
|
@ -79,6 +80,9 @@ static int WIIUAUDIO_OpenDevice(_THIS, void* handle, const char* devname, int is
|
|||
AXInitWithParams(&initparams);
|
||||
} else printf("DEBUG: AX already up?\n");
|
||||
|
||||
/* Disable gamepad virtual surround (causes distortion) */
|
||||
AXSetDRCVSMode(0);
|
||||
|
||||
/* Get a voice, top priority (we only need one) */
|
||||
this->hidden->voice = AXAcquireVoice(31, NULL, NULL);
|
||||
if (!this->hidden->voice) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user