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/opl_serial_port.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/chips/opl_serial_port.cpp') diff --git a/src/chips/opl_serial_port.cpp b/src/chips/opl_serial_port.cpp index 47fe491..d491d69 100644 --- a/src/chips/opl_serial_port.cpp +++ b/src/chips/opl_serial_port.cpp @@ -94,6 +94,11 @@ bool OPL_SerialPort::connectPort(const std::string& name, unsigned baudRate, uns return m_port->open(name, baudRate); } +bool OPL_SerialPort::hasFullPanning() +{ + return false; +} + void OPL_SerialPort::writeReg(uint16_t addr, uint8_t data) { uint8_t sendBuffer[16]; -- cgit v1.2.3