From f76a2165ef87a4191fbb6f8ea6106f0fac46e103 Mon Sep 17 00:00:00 2001 From: spacy51 Date: Thu, 28 Aug 2008 21:07:26 +0000 Subject: [PATCH] FIX use GBC audio core for GBC ROMs instead of GB mono git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@657 a31d4220-a93d-0410-bf67-fe4944624d44 --- src/dmg/gbSound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dmg/gbSound.cpp b/src/dmg/gbSound.cpp index 9588b506..70ff4bbb 100644 --- a/src/dmg/gbSound.cpp +++ b/src/dmg/gbSound.cpp @@ -141,7 +141,7 @@ void gbSoundTick() static void reset_apu() { Gb_Apu::mode_t mode = Gb_Apu::mode_dmg; - if ( gbHardware & 1 ) + if ( gbHardware & 2 ) mode = Gb_Apu::mode_cgb; if ( gbHardware & 8 ) mode = Gb_Apu::mode_agb;