TIA: volume

This commit is contained in:
tildearrow 2022-09-09 23:42:48 -05:00
parent 917a03eb07
commit 2e49f9c8a0
2 changed files with 5 additions and 0 deletions

View File

@ -324,6 +324,10 @@ void DivPlatformTIA::reset() {
} }
} }
float DivPlatformTIA::getPostAmp() {
return 0.5f;
}
bool DivPlatformTIA::isStereo() { bool DivPlatformTIA::isStereo() {
return (mixingType==2); return (mixingType==2);
} }

View File

@ -63,6 +63,7 @@ class DivPlatformTIA: public DivDispatch {
void tick(bool sysTick=true); void tick(bool sysTick=true);
void muteChannel(int ch, bool mute); void muteChannel(int ch, bool mute);
void setFlags(unsigned int flags); void setFlags(unsigned int flags);
float getPostAmp();
bool isStereo(); bool isStereo();
bool keyOffAffectsArp(int ch); bool keyOffAffectsArp(int ch);
void notifyInsDeletion(void* ins); void notifyInsDeletion(void* ins);