diff options
author | 2015-08-27 18:45:57 -0400 | |
---|---|---|
committer | 2015-08-27 18:45:57 -0400 | |
commit | b6ca87aaf6e7c0a8d7ee643a12df2859a907030c (patch) | |
tree | 4eb9b3ed154080ddd65059420a2701f9de202f23 /src/emu/sound/tms5110.h | |
parent | 44f830bfc4ffe4ba9b807b5cb9a579a1a9e85e19 (diff) |
TMS5110.c: Finally fixed zpar logic correctly. [Lord Nightmare]
Diffstat (limited to 'src/emu/sound/tms5110.h')
-rw-r--r-- | src/emu/sound/tms5110.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/sound/tms5110.h b/src/emu/sound/tms5110.h index c30dbf8c9db..dffb19b29d7 100644 --- a/src/emu/sound/tms5110.h +++ b/src/emu/sound/tms5110.h @@ -7,6 +7,7 @@ #include "emu.h" +/* HACK: if defined, uses impossibly perfect 'straight line' interpolation */ #undef PERFECT_INTERPOLATION_HACK /* TMS5110 commands */ @@ -153,6 +154,7 @@ private: UINT8 m_old_frame_pitch_idx; UINT8 m_old_frame_k_idx[10]; UINT8 m_old_zpar; + UINT8 m_old_uv_zpar; INT32 m_current_energy; INT32 m_current_pitch; |