VBA-Next: Wave channel fix

This update seems to fix the broken BGM of Hachiemon.
origin: <0e09dc3d6e>
This commit is contained in:
gochaism 2014-08-29 13:13:44 +00:00
parent 16aabb1a4a
commit 8c79883544
1 changed files with 4 additions and 1 deletions

View File

@ -1593,7 +1593,10 @@ class Gb_Wave : public Gb_Osc
/* Wave index that would be accessed, or -1 if no access would occur*/
int Gb_Wave::access( unsigned addr ) const
{
addr = (phase & BANK_SIZE_MIN_ONE) >> 1;
//if ( mode != MODE_AGB )
//{
// addr = (phase & BANK_SIZE_MIN_ONE) >> 1;
//}
return addr & 0x0F;
}
};