From 1bb3f75a0626ea290e70677e38b861d7ad891a66 Mon Sep 17 00:00:00 2001 From: Aaron Culliney Date: Sun, 23 Oct 2016 17:36:52 -0700 Subject: [PATCH] Avoid doing Mockingboard work as much as possible - Fixes audio underflow issue on ancient Droid devices --- src/audio/mockingboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio/mockingboard.c b/src/audio/mockingboard.c index 839baa27..fcf527a1 100644 --- a/src/audio/mockingboard.c +++ b/src/audio/mockingboard.c @@ -949,7 +949,7 @@ static void MB_Update() return; } - if (!MockingboardVoice->bActive) + if (!MockingboardVoice->bActive || !g_bMB_Active) { return; }