FIX really use GBA sound when GBA is selected instead of GBC

git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@656 a31d4220-a93d-0410-bf67-fe4944624d44
This commit is contained in:
spacy51 2008-08-28 12:03:11 +00:00
parent ee4fd96d82
commit c304345f61
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ static void reset_apu()
Gb_Apu::mode_t mode = Gb_Apu::mode_dmg;
if ( gbHardware & 1 )
mode = Gb_Apu::mode_cgb;
if ( gbHardware & 4 )
if ( gbHardware & 8 )
mode = Gb_Apu::mode_agb;
gb_apu->reset( mode );