diff options
author | Norbert Lange | 2009-06-14 21:49:33 +0000 |
---|---|---|
committer | Norbert Lange | 2009-06-14 21:49:33 +0000 |
commit | f0b74418bca5c35b7242b7e6b0480c2962364283 (patch) | |
tree | d90a3b7f5e16df80f56f25a8e89b616f30d4accf /sound/mods | |
parent | 1fcd6bff086585adec47ccdefdd9efce0ebea27a (diff) | |
download | scummvm-rg350-f0b74418bca5c35b7242b7e6b0480c2962364283.tar.gz scummvm-rg350-f0b74418bca5c35b7242b7e6b0480c2962364283.tar.bz2 scummvm-rg350-f0b74418bca5c35b7242b7e6b0480c2962364283.zip |
Removed some debugmessages so Linux manages to build again =/
svn-id: r41527
Diffstat (limited to 'sound/mods')
-rw-r--r-- | sound/mods/tfmx.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
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 } |