From b1324a0f1a6ccba2fb0b5144fa26bbb9fd917213 Mon Sep 17 00:00:00 2001 From: Wohlstand Date: Tue, 25 Mar 2025 17:28:37 +0300 Subject: Chipset: Added "hasFullPanning" method It should allow normal work of emulators without full-panning extension implementation, or with real hardware interfaces --- src/chips/esfmu_opl3.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/chips/esfmu_opl3.cpp') diff --git a/src/chips/esfmu_opl3.cpp b/src/chips/esfmu_opl3.cpp index 9637c4a..f5f20e9 100644 --- a/src/chips/esfmu_opl3.cpp +++ b/src/chips/esfmu_opl3.cpp @@ -77,7 +77,12 @@ const char *ESFMuOPL3::emulatorName() return "ESFMu"; } +bool ESFMuOPL3::hasFullPanning() +{ + return false; +} + OPLChipBase::ChipType ESFMuOPL3::chipType() { - return CHIPTYPE_OPL3; + return CHIPTYPE_ESFM; } -- cgit v1.2.3