mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-26 22:43:01 +00:00
Fix output preview
This commit is contained in:
parent
f839b0771c
commit
69090232fb
2 changed files with 6 additions and 1 deletions
|
@ -222,6 +222,7 @@ void es5505_core::voice_t::fetch(u8 voice, u8 cycle)
|
|||
|
||||
void es5505_core::voice_t::tick(u8 voice)
|
||||
{
|
||||
m_output[0] = m_output[1] = 0;
|
||||
m_ch.reset();
|
||||
|
||||
// Filter execute
|
||||
|
@ -293,6 +294,8 @@ void es5505_core::voice_t::reset()
|
|||
m_lvol = 0;
|
||||
m_rvol = 0;
|
||||
m_ch.reset();
|
||||
m_mute = false;
|
||||
m_output[0] = m_output[1] = 0;
|
||||
}
|
||||
|
||||
// Accessors
|
||||
|
|
|
@ -287,6 +287,7 @@ void es5506_core::voice_t::fetch(u8 voice, u8 cycle)
|
|||
|
||||
void es5506_core::voice_t::tick(u8 voice)
|
||||
{
|
||||
m_output[0] = m_output[1] = 0;
|
||||
m_ch.reset();
|
||||
|
||||
// Filter execute
|
||||
|
@ -413,6 +414,7 @@ void es5506_core::voice_t::reset()
|
|||
m_filtcount = 0;
|
||||
m_ch.reset();
|
||||
m_mute = false;
|
||||
m_output[0] = m_output[1] = 0;
|
||||
}
|
||||
|
||||
// Accessors
|
||||
|
|
Loading…
Reference in a new issue