summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Lord-Nightmare <Lord-Nightmare@users.noreply.github.com>2015-08-23 22:14:03 -0400
committer Lord-Nightmare <Lord-Nightmare@users.noreply.github.com>2015-08-23 22:14:03 -0400
commit3a09ca08887363b313c08a1605e7d73749b28f27 (patch)
tree4db8d5ca6d057bb7e92d83b7e8b3279bda723243
parent6dd8a4ef30951b8031e343011ba869181c6eeafb (diff)
fix stupid typo, doesn't fix the cvs.c goldbug sound inconsistency yet (nw)
-rw-r--r--src/emu/sound/tms5110.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/tms5110.c b/src/emu/sound/tms5110.c
index 38e317cb6bf..1d6ea4876df 100644
--- a/src/emu/sound/tms5110.c
+++ b/src/emu/sound/tms5110.c
@@ -610,7 +610,7 @@ void tms5110_device::process(INT16 *buffer, unsigned int size)
* convenient and should make no difference in output.
*/
if ((m_IP == 7)&&(m_inhibit==1)) m_pitch_zero = 1;
- if ((m_IP == 0)&&(m_pitch_zero = 1)) m_pitch_zero = 0;
+ if ((m_IP == 0)&&(m_pitch_zero==1)) m_pitch_zero = 0;
#ifdef PERFECT_INTERPOLATION_HACK
m_old_zpar = m_zpar;
#endif