From 5e04dbcc6babfa8a445918116fb9e03f3ddd1a13 Mon Sep 17 00:00:00 2001 From: athrxx Date: Fri, 8 Mar 2019 00:17:49 +0100 Subject: AUDIO: (FM-TOWNS/PC-98) - hopefully fix NDS port --- audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'audio/softsynth/fmtowns_pc98') diff --git a/audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.cpp b/audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.cpp index ce006b165c..7cecb0416d 100644 --- a/audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.cpp +++ b/audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.cpp @@ -1260,7 +1260,11 @@ uint8 TownsPC98_FmSynth::readReg(uint8 part, uint8 regAddress) { if (!(regAddress & 0xF0) && _ssg) return _ssg->readReg(regAddress & 0x0F); else if ((regAddress & 0xF0) == 0x10 && _prc) +#ifdef DISABLE_PC98_RHYTHM_CHANNEL + return 0; +#else return _prc->readReg(regAddress & 0x0F); +#endif return _registers[regAddress][part]; } -- cgit v1.2.3