segas16a: reduce overall volume to prevent overdrive

This commit is contained in:
hap 2021-09-03 17:35:21 +02:00
parent f686bcd33e
commit 3845178bb4

View File

@ -2071,7 +2071,7 @@ void segas16a_state::system16a_no7751(machine_config &config)
config.device_remove("dac");
YM2151(config.replace(), m_ymsnd, 4000000);
m_ymsnd->add_route(ALL_OUTPUTS, "speaker", 1.0);
m_ymsnd->add_route(ALL_OUTPUTS, "speaker", 0.5);
}
void segas16a_state::system16a_no7751p(machine_config &config)
@ -2090,9 +2090,8 @@ void segas16a_state::system16a_i8751_no7751(machine_config &config)
system16a_i8751(config);
config.device_remove("n7751");
config.device_remove("dac");
config.device_remove("vref");
YM2151(config.replace(), "ymsnd", 4000000).add_route(ALL_OUTPUTS, "speaker", 1.0);
YM2151(config.replace(), "ymsnd", 4000000).add_route(ALL_OUTPUTS, "speaker", 0.5);
}
*/
@ -2105,7 +2104,7 @@ void segas16a_state::system16a_fd1089a_no7751(machine_config &config)
config.device_remove("dac");
YM2151(config.replace(), m_ymsnd, 4000000);
m_ymsnd->add_route(ALL_OUTPUTS, "speaker", 1.0);
m_ymsnd->add_route(ALL_OUTPUTS, "speaker", 0.5);
}
void segas16a_state::system16a_fd1089b_no7751(machine_config &config)
@ -2117,7 +2116,7 @@ void segas16a_state::system16a_fd1089b_no7751(machine_config &config)
config.device_remove("dac");
YM2151(config.replace(), m_ymsnd, 4000000);
m_ymsnd->add_route(ALL_OUTPUTS, "speaker", 1.0);
m_ymsnd->add_route(ALL_OUTPUTS, "speaker", 0.5);
}
void segas16a_state::system16a_fd1094_no7751(machine_config &config)
@ -2129,7 +2128,7 @@ void segas16a_state::system16a_fd1094_no7751(machine_config &config)
config.device_remove("dac");
YM2151(config.replace(), m_ymsnd, 4000000);
m_ymsnd->add_route(ALL_OUTPUTS, "speaker", 1.0);
m_ymsnd->add_route(ALL_OUTPUTS, "speaker", 0.5);
}