From 38aa82a4f502fd913a402c9183364ebfa4f85cce Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Fri, 28 Oct 2011 12:32:14 +0200 Subject: AUDIO: Fix conditional compilation of maxtrax and tfmx code. This is a regression from 3ddb6c0c903f478b91a8965d3433a9f79ce16ba7. --- audio/mods/maxtrax.cpp | 4 ++-- audio/mods/tfmx.cpp | 4 ++-- audio/mods/tfmx.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/audio/mods/maxtrax.cpp b/audio/mods/maxtrax.cpp index 344d678b76..8ed51ae5c3 100644 --- a/audio/mods/maxtrax.cpp +++ b/audio/mods/maxtrax.cpp @@ -29,7 +29,7 @@ #include "audio/mods/maxtrax.h" // test for engines using this class. -#if defined(SOUND_MODS_MAXTRAX_H) +#if defined(AUDIO_MODS_MAXTRAX_H) namespace { @@ -1034,4 +1034,4 @@ void MaxTrax::outPutScore(const Score &sc, int num) {} } // End of namespace Audio -#endif // #if defined(SOUND_MODS_MAXTRAX_H) +#endif // #if defined(AUDIO_MODS_MAXTRAX_H) diff --git a/audio/mods/tfmx.cpp b/audio/mods/tfmx.cpp index a89da78af1..8d584809c8 100644 --- a/audio/mods/tfmx.cpp +++ b/audio/mods/tfmx.cpp @@ -29,7 +29,7 @@ #include "audio/mods/tfmx.h" // test for engines using this class. -#if defined(SOUND_MODS_TFMX_H) +#if defined(AUDIO_MODS_TFMX_H) // couple debug-functions namespace { @@ -1187,4 +1187,4 @@ void displayPatternstep(const void * const vptr) { } // End of anonymous namespace #endif -#endif // #if defined(SOUND_MODS_TFMX_H) +#endif // #if defined(AUDIO_MODS_TFMX_H) diff --git a/audio/mods/tfmx.h b/audio/mods/tfmx.h index 26099f969d..4174fbfb27 100644 --- a/audio/mods/tfmx.h +++ b/audio/mods/tfmx.h @@ -24,7 +24,7 @@ #if !defined(ENABLE_SCUMM) // normal Header Guard -#elif !defined(SOUND_MODS_TFMX_H) +#elif !defined(AUDIO_MODS_TFMX_H) #define AUDIO_MODS_TFMX_H #include "audio/mods/paula.h" @@ -278,4 +278,4 @@ private: } // End of namespace Audio -#endif // !defined(SOUND_MODS_TFMX_H) +#endif // !defined(AUDIO_MODS_TFMX_H) -- cgit v1.2.3