From 01697b82f4e09263962f7129672821e6d7b70c0b Mon Sep 17 00:00:00 2001 From: Wohlstand Date: Sat, 5 Apr 2025 22:05:12 +0300 Subject: ymfm_opl: Fixed the extra seicolon warning --- src/chips/ymfm/ymfm_opl.cpp | 8 ++++---- 1 file 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[] = -- cgit v1.2.3