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/opal_opl3.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/chips/opal_opl3.cpp') diff --git a/src/chips/opal_opl3.cpp b/src/chips/opal_opl3.cpp index c118c3a..4e8e3d3 100644 --- a/src/chips/opal_opl3.cpp +++ b/src/chips/opal_opl3.cpp @@ -75,6 +75,11 @@ const char *OpalOPL3::emulatorName() return "Opal OPL3"; } +bool OpalOPL3::hasFullPanning() +{ + return true; +} + OPLChipBase::ChipType OpalOPL3::chipType() { return CHIPTYPE_OPL3; -- cgit v1.2.3