Fix detuned VRC7. In VRC7 apu the 2413 emu must run at the default clock rate. Thanks to Mauricio Garrido.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30623 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andree Buschmann 2011-10-01 08:16:33 +00:00
parent 0c498211a4
commit da09f7f0f1

View file

@ -32,7 +32,6 @@ void Vrc7_reset( struct Nes_Vrc7_Apu* this )
void Vrc7_set_rate( struct Nes_Vrc7_Apu* this, int r )
{
OPLL_set_quality( &this->opll, r < 44100 ? 0 : 1 );
OPLL_set_rate( &this->opll, (e_uint32)r );
}
void Vrc7_write_reg( struct Nes_Vrc7_Apu* this, int data )