aboutsummaryrefslogtreecommitdiff
path: root/audio/mods/maxtrax.h
diff options
context:
space:
mode:
authorJohannes Schickel2012-03-17 22:02:16 +0100
committerJohannes Schickel2012-03-17 22:02:44 +0100
commit223794fb383637944c3b161c04ecc233a354c9ae (patch)
treed28b6822b93e7ee764c669657368ff38f9b08e97 /audio/mods/maxtrax.h
parent2c0bd426fcd2d965ca5f84fde893719ddfc4c37f (diff)
downloadscummvm-rg350-223794fb383637944c3b161c04ecc233a354c9ae.tar.gz
scummvm-rg350-223794fb383637944c3b161c04ecc233a354c9ae.tar.bz2
scummvm-rg350-223794fb383637944c3b161c04ecc233a354c9ae.zip
ALL: Make use of defined() for the preprocessor consistent.
This does not change the use of defined for some NDS source files, since they seem to be (based on?) third party code.
Diffstat (limited to 'audio/mods/maxtrax.h')
-rw-r--r--audio/mods/maxtrax.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/mods/maxtrax.h b/audio/mods/maxtrax.h
index c61f4e1b50..c45a21a255 100644
--- a/audio/mods/maxtrax.h
+++ b/audio/mods/maxtrax.h
@@ -24,7 +24,7 @@
#if !defined(ENABLE_KYRA)
// normal Header Guard
-#elif !defined AUDIO_MODS_MAXTRAX_H
+#elif !defined(AUDIO_MODS_MAXTRAX_H)
#define AUDIO_MODS_MAXTRAX_H
// #define MAXTRAX_HAS_MODULATION
@@ -219,4 +219,4 @@ private:
};
} // End of namespace Audio
-#endif // !defined AUDIO_MODS_MAXTRAX_H
+#endif // !defined(AUDIO_MODS_MAXTRAX_H)