From 0efe232ae8b44e4716a6bf566549682351d64966 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Fri, 7 Mar 2025 05:40:10 -0500 Subject: [PATCH] VRC6: what? stripping the timer out worsens performace, but only removing the tick call improves it???? --- extern/vgsound_emu-modified/vgsound_emu/src/vrcvi/vrcvi.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/extern/vgsound_emu-modified/vgsound_emu/src/vrcvi/vrcvi.cpp b/extern/vgsound_emu-modified/vgsound_emu/src/vrcvi/vrcvi.cpp index 9787540cc..77ac0c31e 100644 --- a/extern/vgsound_emu-modified/vgsound_emu/src/vrcvi/vrcvi.cpp +++ b/extern/vgsound_emu-modified/vgsound_emu/src/vrcvi/vrcvi.cpp @@ -18,10 +18,6 @@ void vrcvi_core::tick() m_out += m_pulse[1].get_output(); m_out += m_sawtooth.get_output(); // add 5 bit sawtooth output } - if (m_timer.tick()) - { - m_timer.counter_tick(); - } } void vrcvi_core::reset()