diff options
author | Eugene Sandulenko | 2011-10-23 17:52:43 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2011-10-23 17:53:13 +0100 |
commit | 32972a5ffb180c9e8a6a9eae51d0e7564ce76d9e (patch) | |
tree | 052e527c673bc82a9f8ebccd4f3bd1a43e46579a /common | |
parent | 77c65648b1db8f8b7b245510681eafd856798d26 (diff) | |
download | scummvm-rg350-32972a5ffb180c9e8a6a9eae51d0e7564ce76d9e.tar.gz scummvm-rg350-32972a5ffb180c9e8a6a9eae51d0e7564ce76d9e.tar.bz2 scummvm-rg350-32972a5ffb180c9e8a6a9eae51d0e7564ce76d9e.zip |
AD: Switched rest of the engines to new GUIO
Diffstat (limited to 'common')
-rw-r--r-- | common/util.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/common/util.h b/common/util.h index 725e0d8cc7..bad07d4cb2 100644 --- a/common/util.h +++ b/common/util.h @@ -98,10 +98,11 @@ template<typename T> inline void SWAP(T &a, T &b) { T tmp = a; a = b; b = tmp; } #define GUIO_MIDIMT32 "\017" #define GUIO_MIDIGM "\020" -#define GUIO1(a) (a "\0") -#define GUIO2(a,b) (a b "\0") -#define GUIO3(a,b,c) (a b c "\0") -#define GUIO4(a,b,c,d) (a b c d "\0") +#define GUIO1(a) (a) +#define GUIO2(a,b) (a b) +#define GUIO3(a,b,c) (a b c) +#define GUIO4(a,b,c,d) (a b c d) +#define GUIO5(a,b,c,d,e) (a b c d e) namespace Common { |