From 63871f7d9c830810a9854b5fe405873334fd329b Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Sat, 29 Aug 2015 04:18:32 -0700 Subject: [PATCH] 3DS: Fix audio buffer clearing --- src/platform/3ds/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/3ds/main.c b/src/platform/3ds/main.c index a960059fe..ce8db6719 100644 --- a/src/platform/3ds/main.c +++ b/src/platform/3ds/main.c @@ -137,7 +137,7 @@ int main() { GSPGPU_FlushDataCache(0, tex->data, 256 * VIDEO_VERTICAL_PIXELS * 2); #if RESAMPLE_LIBRARY == RESAMPLE_BLIP_BUF blip_clear(context.gba->audio.left); - blip_clear(context.gba->audio.left); + blip_clear(context.gba->audio.right); #endif gspWaitForPPF(); _drawStart();