sunelectronics/markham.cpp: Fix PSG chip balance in banbam/pettanp (#11367)

This commit is contained in:
ValleyBell 2023-06-24 17:13:10 +02:00 committed by GitHub
parent 76372e6c01
commit aabf3581ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -593,9 +593,10 @@ void markham_state::markham(machine_config &config)
/* sound hardware */
SPEAKER(config, "mono").front_center();
SN76496(config, m_sn[0], CPU_CLOCK/2).add_route(ALL_OUTPUTS, "mono", 0.75);
SN76496(config, m_sn[1], CPU_CLOCK/2).add_route(ALL_OUTPUTS, "mono", 0.75);
// volume balance based on the OST release of Pettan Pyuu,
// "LEGEND OF GAME MUSIC 2 PLATINUM BOX" (SCDC-00473~82)
SN76496(config, m_sn[0], CPU_CLOCK/2).add_route(ALL_OUTPUTS, "mono", 0.2);
SN76496(config, m_sn[1], CPU_CLOCK/2).add_route(ALL_OUTPUTS, "mono", 1.0);
}
void markham_state::strnskil(machine_config &config)