VERA: halve output volume to match other PSGs

In terms of maximum single-channel output.
X16's mixing is kept by halving YM2151 part.
This commit is contained in:
Natt Akuma 2022-05-11 15:22:17 +07:00
parent 431b6b5957
commit e48faa4114
2 changed files with 2 additions and 2 deletions

View file

@ -414,7 +414,7 @@ void DivPlatformVERA::muteChannel(int ch, bool mute) {
} }
float DivPlatformVERA::getPostAmp() { float DivPlatformVERA::getPostAmp() {
return 8.0f; return 4.0f;
} }
bool DivPlatformVERA::isStereo() { bool DivPlatformVERA::isStereo() {

View file

@ -599,7 +599,7 @@ void FurnaceGUI::initSystemPresets() {
cat.systems.push_back(FurnaceGUISysDef( cat.systems.push_back(FurnaceGUISysDef(
"Commander X16", { "Commander X16", {
DIV_SYSTEM_VERA, 64, 0, 0, DIV_SYSTEM_VERA, 64, 0, 0,
DIV_SYSTEM_YM2151, 64, 0, 0, DIV_SYSTEM_YM2151, 32, 0, 0,
0 0
} }
)); ));