From b1a49dcdc5dcdc6808b775c63157afa28641d070 Mon Sep 17 00:00:00 2001 From: cam900 Date: Sat, 26 Feb 2022 00:50:49 +0900 Subject: [PATCH] Fix actually --- src/engine/platform/ym2610b.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/engine/platform/ym2610b.h b/src/engine/platform/ym2610b.h index 892f68437..f995d5975 100644 --- a/src/engine/platform/ym2610b.h +++ b/src/engine/platform/ym2610b.h @@ -26,12 +26,12 @@ #include "ym2610.h" -static unsigned short chanOffs_b[6]={ - 0x00, 0x01, 0x02, 0x100, 0x101, 0x102 -}; - class DivPlatformYM2610B: public DivDispatch { protected: + const unsigned short chanOffs_b[6]={ + 0x00, 0x01, 0x02, 0x100, 0x101, 0x102 + }; + struct Channel { DivInstrumentFM state; unsigned char freqH, freqL;