aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/scumm/player_v4a.cpp1
-rw-r--r--sound/mods/tfmx.cpp10
2 files changed, 7 insertions, 4 deletions
diff --git a/engines/scumm/player_v4a.cpp b/engines/scumm/player_v4a.cpp
index ea3c2c9eb9..581a3ed94e 100644
--- a/engines/scumm/player_v4a.cpp
+++ b/engines/scumm/player_v4a.cpp
@@ -61,6 +61,7 @@ Player_V4A::~Player_V4A() {
}
void Player_V4A::setMusicVolume(int vol) {
+ debug("player_v4a: setMusicVolume %i", vol);
}
int Player_V4A::getSlot(int id) const {
diff --git a/sound/mods/tfmx.cpp b/sound/mods/tfmx.cpp
index de37823258..edd92888e4 100644
--- a/sound/mods/tfmx.cpp
+++ b/sound/mods/tfmx.cpp
@@ -30,9 +30,9 @@
#include "common/debug.h"
#include "sound/mods/tfmx.h"
-
+#ifdef _MSC_VER
#include "tfmx/tfmxdebug.h"
-
+#endif
namespace Audio {
const uint16 Tfmx::noteIntervalls[64] = {
@@ -189,8 +189,9 @@ static void warnMacroUnimplemented(const byte *macroPtr, int level) {
debug("Warning - Macro not supported:");
else
debug("Warning - Macro not completely supported:");
-
+#ifdef _MSC_VER
displayMacroStep(macroPtr);
+#endif
}
FORCEINLINE bool Tfmx::macroStep(ChannelContext &channel) {
@@ -506,8 +507,9 @@ static void warnPatternUnimplemented(const byte *patternPtr, int level) {
debug("Warning - Pattern not supported:");
else
debug("Warning - Pattern not completely supported:");
-
+#ifdef _MSC_VER
displayPatternstep(patternPtr);
+#endif
}