diff options
Diffstat (limited to 'engines/cge/sound.cpp')
-rw-r--r-- | engines/cge/sound.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/engines/cge/sound.cpp b/engines/cge/sound.cpp index 03ba231fec..81dd457603 100644 --- a/engines/cge/sound.cpp +++ b/engines/cge/sound.cpp @@ -34,7 +34,6 @@ #else #include <stdio.h> #include <stdlib.h> - #define DROP(m,n) { printf("%s [%s]\n", m, n); _exit(1); } #endif #include "cge/text.h" @@ -43,6 +42,12 @@ #include <alloc.h> +namespace CGE { + +#ifndef DROP_H + #define DROP(m,n) { printf("%s [%s]\n", m, n); _exit(1); } +#endif + bool Music = true; FX Fx = 16; // must precede SOUND!! SOUND Sound; @@ -318,3 +323,4 @@ EC void * Patch (int pat) return p; } +} // End of namespace CGE |