diff options
author | 2008-08-28 15:26:11 +0000 | |
---|---|---|
committer | 2008-08-28 15:26:11 +0000 | |
commit | a2caa558e2b663734dc9b0ac9c955dd681ec2b73 (patch) | |
tree | 27c1e744303f1e12724edd65e3fc3a5f03e5973c /src/emu/sound/disc_mth.c | |
parent | 32d55f53b091ab971d0f3b816a2b0820dfbd39ff (diff) |
Cleanups and version bump.mame0127u1
Diffstat (limited to 'src/emu/sound/disc_mth.c')
-rw-r--r-- | src/emu/sound/disc_mth.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/sound/disc_mth.c b/src/emu/sound/disc_mth.c index dc0b07c0ae5..1cf808e8745 100644 --- a/src/emu/sound/disc_mth.c +++ b/src/emu/sound/disc_mth.c @@ -301,13 +301,13 @@ static void dst_dac_r1_step(node_description *node) if ((x_time != 0) && (bit_val != ((context->last_data >> bit) & 0x01))) { /* there is x_time and a change in bit, - * so anti-alias the current */ + * so anti-alias the current */ i_bit *= bit_val ? x_time : 1.0 - x_time; } else { /* there is no x_time or a change in bit, - * so 0 the current if the bit value is 0 */ + * so 0 the current if the bit value is 0 */ if (bit_val == 0) i_bit = 0; } i_total += i_bit; @@ -1014,7 +1014,7 @@ static void dst_mixer_step(node_description *node) rTemp = info->r[bit]; connected = 1; vTemp = DST_MIXER__IN(bit); - + if (context->r_node[bit] != NULL) { /* a node has the posibility of being disconnected from the circuit. */ @@ -1049,7 +1049,7 @@ static void dst_mixer_step(node_description *node) } } } - + if (connected) { if (info->c[bit] != 0) |