From b388f6d45427de4ea46094010300e60ecfe62899 Mon Sep 17 00:00:00 2001 From: athrxx Date: Fri, 8 Mar 2019 00:33:36 +0100 Subject: AUDIO: (FM-TOWNS/PC-98) - really fix NDS port build --- audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'audio') diff --git a/audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.cpp b/audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.cpp index 7cecb0416d..2cbaad3471 100644 --- a/audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.cpp +++ b/audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.cpp @@ -1259,10 +1259,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 + else if ((regAddress & 0xF0) == 0x10) return 0; #else + else if ((regAddress & 0xF0) == 0x10 && _prc) return _prc->readReg(regAddress & 0x0F); #endif -- cgit v1.2.3