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/dosbox_opl3.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/chips/dosbox_opl3.cpp') diff --git a/src/chips/dosbox_opl3.cpp b/src/chips/dosbox_opl3.cpp index 69c77b6..1a29774 100644 --- a/src/chips/dosbox_opl3.cpp +++ b/src/chips/dosbox_opl3.cpp @@ -84,6 +84,11 @@ const char *DosBoxOPL3::emulatorName() return "DOSBox 0.74-r4111 OPL3"; } +bool DosBoxOPL3::hasFullPanning() +{ + return true; +} + OPLChipBase::ChipType DosBoxOPL3::chipType() { return CHIPTYPE_OPL3; -- cgit v1.2.3