Skip to content

Commit

Permalink
Update wiiu_audio.c - audio should no longer clip
Browse files Browse the repository at this point in the history
  • Loading branch information
inactive123 committed Jul 11, 2018
1 parent dc55bd1 commit cb13795
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion audio/drivers/wiiu_audio.c
Expand Up @@ -84,7 +84,7 @@ static void* ax_audio_init(const char* device, unsigned rate, unsigned latency,
u16 setup_buf[0x30] = {0};
setup_buf[0x25] = 2; /* we request 2 channels */
AXInitParams init = {AX_INIT_RENDERER_48KHZ, 0, 0};
AXVoiceVeData ve = {0xF000, 0};
AXVoiceVeData ve = {0x8000, 0};
ax_audio_t* ax = (ax_audio_t*)calloc(1, sizeof(ax_audio_t));

if (!ax)
Expand Down

0 comments on commit cb13795

Please sign in to comment.