aboutsummaryrefslogtreecommitdiff
path: root/src/chips/esfmu_opl3.h
diff options
context:
space:
mode:
authorWohlstand <admin@wohlnet.ru>2025-03-24 13:36:08 +0300
committerWohlstand <admin@wohlnet.ru>2025-03-24 13:36:08 +0300
commit4fd3ef02876897453f7309b4a8b62113e63bffb0 (patch)
tree79706d4b6e692b08993cf0566038f624ed7c2938 /src/chips/esfmu_opl3.h
parentdb850087a4222e0709269e666ddf8923a72977ab (diff)
downloadlibADLMIDI-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.h14
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;