Skip to content

Commit a60e7b7

Browse files
committed
dec0: lower opl2 volume
1 parent 35e80b8 commit a60e7b7

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/mame/dataeast/dec0.cpp

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1848,10 +1848,10 @@ void dec0_state::dec0(machine_config &config)
18481848

18491849
ym3812_device &ym2(YM3812(config, "ym2", XTAL(12'000'000) / 4));
18501850
ym2.irq_handler().set("audio_irq", FUNC(input_merger_device::in_w<1>));
1851-
ym2.add_route(ALL_OUTPUTS, "mono", 0.72);
1851+
ym2.add_route(ALL_OUTPUTS, "mono", 0.32);
18521852

18531853
okim6295_device &oki(OKIM6295(config, "oki", XTAL(20'000'000) / 2 / 10, okim6295_device::PIN7_HIGH));
1854-
oki.add_route(ALL_OUTPUTS, "mono", 0.72);
1854+
oki.add_route(ALL_OUTPUTS, "mono", 0.66);
18551855
}
18561856

18571857

@@ -1877,7 +1877,7 @@ void dec0_state::dec1(machine_config &config)
18771877

18781878
ym3812_device &ym2(YM3812(config, "ym2", XTAL(12'000'000)/4)); /* verified on pcb */
18791879
ym2.irq_handler().set_inputline(m_audiocpu, 1);
1880-
ym2.add_route(ALL_OUTPUTS, "mono", 0.80);
1880+
ym2.add_route(ALL_OUTPUTS, "mono", 0.35);
18811881

18821882
okim6295_device &oki(OKIM6295(config, "oki", XTAL(12'000'000)/12, okim6295_device::PIN7_HIGH)); /* verified on pcb */
18831883
oki.add_route(ALL_OUTPUTS, "mono", 0.80);
@@ -2038,7 +2038,7 @@ void automat_state::secretab(machine_config &config) // all clocks verified on P
20382038
ym2203a.add_route(3, "mono", 0.35);
20392039

20402040
ym3812_device &ym3812(YM3812(config, "ym3812", 20_MHz_XTAL / 8));
2041-
ym3812.add_route(ALL_OUTPUTS, "mono", 0.80);
2041+
ym3812.add_route(ALL_OUTPUTS, "mono", 0.35);
20422042

20432043
LS157(config, m_adpcm_select[0], 0);
20442044
m_adpcm_select[0]->out_callback().set("msm1", FUNC(msm5205_device::data_w));
@@ -2289,7 +2289,6 @@ void dec0_state::midresb(machine_config &config)
22892289
M68705R3(config, m_mcu, XTAL(3'579'545));
22902290

22912291
subdevice<ym3812_device>("ym2")->irq_handler().set_inputline(m_audiocpu, 0);
2292-
subdevice<ym3812_device>("ym2")->add_route(ALL_OUTPUTS, "mono", 0.80);
22932292

22942293
// bootleg doesn't seem to support row/col scroll (or enable is different)
22952294
// m_tilegen[0]->disable_16x16();

0 commit comments

Comments
 (0)