Game Boy: I hate your artificial limitations

fixes a DefleMask demo module
This commit is contained in:
tildearrow 2022-08-10 23:56:25 -05:00
parent 51db06298b
commit 92f40774e4
2 changed files with 5 additions and 0 deletions

View File

@ -573,6 +573,10 @@ void DivPlatformGB::reset() {
antiClickWavePos=0;
}
int DivPlatformGB::getPortaFloor(int ch) {
return 24;
}
bool DivPlatformGB::isStereo() {
return true;
}

View File

@ -94,6 +94,7 @@ class DivPlatformGB: public DivDispatch {
void forceIns();
void tick(bool sysTick=true);
void muteChannel(int ch, bool mute);
int getPortaFloor(int ch);
bool isStereo();
void notifyInsChange(int ins);
void notifyWaveChange(int wave);