From 8c798835446ec55b493fcb7b48f52c12514d4a8b Mon Sep 17 00:00:00 2001 From: gochaism Date: Fri, 29 Aug 2014 13:13:44 +0000 Subject: [PATCH] VBA-Next: Wave channel fix This update seems to fix the broken BGM of Hachiemon. origin: --- vbanext/instance.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vbanext/instance.cpp b/vbanext/instance.cpp index 6d6d962c81..4da179cb4d 100644 --- a/vbanext/instance.cpp +++ b/vbanext/instance.cpp @@ -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; } };