[Scummvm-git-logs] scummvm master -> 6a3310eb6fd4e508e6f7abb2193fd4efdd3a9ea9

digitall 547637+digitall at users.noreply.github.com
Fri Oct 29 17:03:39 UTC 2021


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:
6a3310eb6f AUDIO: (FM-TOWNS): Fix Duplicated Branch GCC Warning


Commit: 6a3310eb6fd4e508e6f7abb2193fd4efdd3a9ea9
    https://github.com/scummvm/scummvm/commit/6a3310eb6fd4e508e6f7abb2193fd4efdd3a9ea9
Author: D G Turner (digitall at scummvm.org)
Date: 2021-10-29T18:02:59+01:00

Commit Message:
AUDIO: (FM-TOWNS): Fix Duplicated Branch GCC Warning

Changed paths:
    audio/softsynth/fmtowns_pc98/towns_euphony.cpp


diff --git a/audio/softsynth/fmtowns_pc98/towns_euphony.cpp b/audio/softsynth/fmtowns_pc98/towns_euphony.cpp
index 999bf87200..fed6d4a0e2 100644
--- a/audio/softsynth/fmtowns_pc98/towns_euphony.cpp
+++ b/audio/softsynth/fmtowns_pc98/towns_euphony.cpp
@@ -246,13 +246,16 @@ void EuphonyPlayer::reset() {
 
 	resetTempo();
 
+	// FIXME: Implement correct code for _tempoControlMode == 1
+#if 0
 	if (_tempoControlMode == 1) {
-		//if (///)
-		//  return;
+		if (/*???*/)
+			return;
 		sendTempo(_defaultTempo);
 	} else {
+#endif
 		sendTempo(_defaultTempo);
-	}
+	//}
 
 	resetAllControls();
 }




More information about the Scummvm-git-logs mailing list