diff options
author | Wohlstand <admin@wohlnet.ru> | 2025-03-24 13:36:08 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2025-03-24 13:36:08 +0300 |
commit | 4fd3ef02876897453f7309b4a8b62113e63bffb0 (patch) | |
tree | 79706d4b6e692b08993cf0566038f624ed7c2938 /src/chips/esfmu_opl3.h | |
parent | db850087a4222e0709269e666ddf8923a72977ab (diff) | |
download | libADLMIDI-4fd3ef02876897453f7309b4a8b62113e63bffb0.tar.gz libADLMIDI-4fd3ef02876897453f7309b4a8b62113e63bffb0.tar.bz2 libADLMIDI-4fd3ef02876897453f7309b4a8b62113e63bffb0.zip |
ESFM: Remove the queue workaround
Diffstat (limited to 'src/chips/esfmu_opl3.h')
-rw-r--r-- | src/chips/esfmu_opl3.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/chips/esfmu_opl3.h b/src/chips/esfmu_opl3.h index 43eb09a..b01d784 100644 --- a/src/chips/esfmu_opl3.h +++ b/src/chips/esfmu_opl3.h @@ -26,20 +26,6 @@ class ESFMuOPL3 final : public OPLChipBaseT<ESFMuOPL3> { void *m_chip; - - static const size_t c_queueSize = 500; - - struct Reg - { - uint32_t addr; - uint8_t data; - }; - - Reg m_queue[c_queueSize]; - size_t m_headPos; - size_t m_tailPos; - long m_queueCount; - public: ESFMuOPL3(); ~ESFMuOPL3() override; |