summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/1942.c
diff options
context:
space:
mode:
author Couriersud <couriersud@users.noreply.github.com>2014-07-09 21:21:38 +0000
committer Couriersud <couriersud@users.noreply.github.com>2014-07-09 21:21:38 +0000
commit821233a8b83a370ae9dff1350c2e6ccd3c513cf5 (patch)
tree9ee027c308204f3490d2417ce737334704c07482 /src/mame/drivers/1942.c
parent1c4ae49942a5328d082ed86de1c500d2aebc7f93 (diff)
Fix some issues introduced with last commit.
The sound system does not allow to stream values > 2^20. Currently limiting the value, but this is not really optimal.
Diffstat (limited to 'src/mame/drivers/1942.c')
-rw-r--r--src/mame/drivers/1942.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/1942.c b/src/mame/drivers/1942.c
index 213378bb3eb..5cf77974a16 100644
--- a/src/mame/drivers/1942.c
+++ b/src/mame/drivers/1942.c
@@ -84,7 +84,9 @@ static NETLIST_START(nl_1942)
SOLVER(Solver, 48000)
ANALOG_INPUT(V5, 5)
- PARAM(Solver.ACCURACY, 1e-10)
+ PARAM(Solver.ACCURACY, 1e-7)
+ //PARAM(Solver.DYNAMIC_TS, 1)
+ //PARAM(Solver.LTE, 5e-8)
/* AY 8910 internal resistors */
@@ -580,7 +582,7 @@ static MACHINE_CONFIG_START( 1942, _1942_state )
MCFG_NETLIST_STREAM_OUTPUT("snd_nl", 0, "R1.1")
//MCFG_NETLIST_STREAM_OUTPUT("snd_nl", 0, "VR.2")
- MCFG_NETLIST_ANALOG_MULT_OFFSET(100000.0, 0.0)
+ MCFG_NETLIST_ANALOG_MULT_OFFSET(70000.0, 0.0)
MACHINE_CONFIG_END