[Scummvm-git-logs] scummvm master -> b388f6d45427de4ea46094010300e60ecfe62899
athrxx
athrxx at scummvm.org
Fri Mar 8 00:34:07 CET 2019
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
b388f6d454 AUDIO: (FM-TOWNS/PC-98) - really fix NDS port build
Commit: b388f6d45427de4ea46094010300e60ecfe62899
https://github.com/scummvm/scummvm/commit/b388f6d45427de4ea46094010300e60ecfe62899
Author: athrxx (athrxx at scummvm.org)
Date: 2019-03-08T00:33:36+01:00
Commit Message:
AUDIO: (FM-TOWNS/PC-98) - really fix NDS port build
Changed paths:
audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.cpp
diff --git a/audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.cpp b/audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.cpp
index 7cecb04..2cbaad3 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
More information about the Scummvm-git-logs
mailing list