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

This commit is contained in:
spacy51 2008-08-28 12:03:11 +00:00
parent 2c4a89738b
commit bb21d4815f
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 );