diff options
author | Wohlstand <admin@wohlnet.ru> | 2025-04-05 22:05:12 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2025-04-05 22:05:12 +0300 |
commit | 01697b82f4e09263962f7129672821e6d7b70c0b (patch) | |
tree | 485832f93b421e1a44bf43ff79b06e9e2bf64d4b | |
parent | ee3b8a087af44c36e424fbb9a5f182d86b8e292f (diff) | |
download | libADLMIDI-01697b82f4e09263962f7129672821e6d7b70c0b.tar.gz libADLMIDI-01697b82f4e09263962f7129672821e6d7b70c0b.tar.bz2 libADLMIDI-01697b82f4e09263962f7129672821e6d7b70c0b.zip |
ymfm_opl: Fixed the extra seicolon warning
-rw-r--r-- | src/chips/ymfm/ymfm_opl.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/chips/ymfm/ymfm_opl.cpp b/src/chips/ymfm/ymfm_opl.cpp index f11c831..ab9934d 100644 --- a/src/chips/ymfm/ymfm_opl.cpp +++ b/src/chips/ymfm/ymfm_opl.cpp @@ -2067,7 +2067,7 @@ void opll_base::generate(output_data *output, uint32_t numsamples) ym2413::ym2413(ymfm_interface &intf, uint8_t const *instrument_data) : opll_base(intf, (instrument_data != nullptr) ? instrument_data : s_default_instruments) { -}; +} // table below taken from https://github.com/plgDavid/misc/wiki/Copyright-free-OPLL(x)-ROM-patches uint8_t const ym2413::s_default_instruments[] = @@ -2106,7 +2106,7 @@ uint8_t const ym2413::s_default_instruments[] = ym2423::ym2423(ymfm_interface &intf, uint8_t const *instrument_data) : opll_base(intf, (instrument_data != nullptr) ? instrument_data : s_default_instruments) { -}; +} // table below taken from https://github.com/plgDavid/misc/wiki/Copyright-free-OPLL(x)-ROM-patches uint8_t const ym2423::s_default_instruments[] = @@ -2147,7 +2147,7 @@ uint8_t const ym2423::s_default_instruments[] = ymf281::ymf281(ymfm_interface &intf, uint8_t const *instrument_data) : opll_base(intf, (instrument_data != nullptr) ? instrument_data : s_default_instruments) { -}; +} // table below taken from https://github.com/plgDavid/misc/wiki/Copyright-free-OPLL(x)-ROM-patches uint8_t const ymf281::s_default_instruments[] = @@ -2186,7 +2186,7 @@ uint8_t const ymf281::s_default_instruments[] = ds1001::ds1001(ymfm_interface &intf, uint8_t const *instrument_data) : opll_base(intf, (instrument_data != nullptr) ? instrument_data : s_default_instruments) { -}; +} // table below taken from https://github.com/plgDavid/misc/wiki/Copyright-free-OPLL(x)-ROM-patches uint8_t const ds1001::s_default_instruments[] = |