From 474caaccd55a3a382377799a0e6330bc19d2ba7f Mon Sep 17 00:00:00 2001 From: Lior Halphon Date: Sun, 30 Mar 2025 22:12:04 +0300 Subject: [PATCH] The relevant RA issue is long fixed by now --- Core/apu.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Core/apu.h b/Core/apu.h index 59f365d..92eea0e 100644 --- a/Core/apu.h +++ b/Core/apu.h @@ -17,12 +17,7 @@ /* Divides nicely and never overflows with 4 channels and 8 (1-8) volume levels */ -#ifdef WIIU -/* Todo: Remove this hack once https://github.com/libretro/RetroArch/issues/6252 is fixed*/ -#define MAX_CH_AMP (0xFF0 / 2) -#else #define MAX_CH_AMP 0xFF0 -#endif #define CH_STEP (MAX_CH_AMP/0xF/8) #endif