diff options
author | 2008-06-21 05:25:19 +0000 | |
---|---|---|
committer | 2008-06-21 05:25:19 +0000 | |
commit | 3245688ccf993b90591febd6bf772abf8ccbf1bf (patch) | |
tree | cd6582ef03fdff42348e4f5f3de5569ebed188f4 /src/emu/sound | |
parent | 02ad5125b1acf4ed890e5ad11865d7dc82d2c57e (diff) |
01905: Many Sets: Fatal Error crash - Fatal error: Input ports cannot be read at init time! (src/emu/inptport.c:1278)
Removed call to discrete_reset() in the initialization code. It is already
called by the sound system during reset, at which point it is safe to read
input ports.
Diffstat (limited to 'src/emu/sound')
-rw-r--r-- | src/emu/sound/discrete.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/emu/sound/discrete.c b/src/emu/sound/discrete.c index 55693e36a42..ff6fc8581da 100644 --- a/src/emu/sound/discrete.c +++ b/src/emu/sound/discrete.c @@ -358,9 +358,6 @@ static void *discrete_start(int sndindex, int clock, const void *config) setup_output_nodes(info); setup_disc_logs(info); - - /* reset the system, which in turn resets all the nodes and steps them forward one */ - discrete_reset(info); return info; } |