VERA: 4x the volume

This commit is contained in:
tildearrow 2022-04-14 01:51:21 -05:00
parent 0e2ecaf6be
commit 3707a86f42
2 changed files with 5 additions and 0 deletions

View File

@ -372,6 +372,10 @@ void DivPlatformVERA::muteChannel(int ch, bool mute) {
}
}
float DivPlatformVERA::getPostAmp() {
return 4.0f;
}
bool DivPlatformVERA::isStereo() {
return true;
}

View File

@ -66,6 +66,7 @@ class DivPlatformVERA: public DivDispatch {
void tick();
void muteChannel(int ch, bool mute);
void notifyInsDeletion(void* ins);
float getPostAmp();
bool isStereo();
void poke(unsigned int addr, unsigned short val);
void poke(std::vector<DivRegWrite>& wlist);