diff options
author | James Brown | 2002-03-05 17:36:09 +0000 |
---|---|---|
committer | James Brown | 2002-03-05 17:36:09 +0000 |
commit | 5eb73a9af4bd3c78662cec1a95b11b7137e9a568 (patch) | |
tree | 4872413c1d086dc862251610e4e36102dbb714a0 | |
parent | a2a497a46f2389096c2009a8dfa1676c889a42be (diff) | |
download | scummvm-rg350-5eb73a9af4bd3c78662cec1a95b11b7137e9a568.tar.gz scummvm-rg350-5eb73a9af4bd3c78662cec1a95b11b7137e9a568.tar.bz2 scummvm-rg350-5eb73a9af4bd3c78662cec1a95b11b7137e9a568.zip |
Remove some testing stuff.
svn-id: r3649
-rw-r--r-- | sound/imuse.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sound/imuse.cpp b/sound/imuse.cpp index 84aeefe577..0309209a09 100644 --- a/sound/imuse.cpp +++ b/sound/imuse.cpp @@ -40,11 +40,11 @@ int num_mix; #define TRIGGER_ID 0 #define COMMAND_ID 1 -//#ifdef SAMNMAX +#ifdef SAMNMAX #define MDHD_TAG "MDpg" -//#else -// #define MDHD_TAG "MDhd" -//#endif +#else + #define MDHD_TAG "MDhd" +#endif int clamp(int val, int min, int max) { if (val<min) @@ -180,8 +180,8 @@ bool SoundEngine::start_sound(int sound) { Player *player; void *mdhd; - mdhd = findTag(sound, MDHD_TAG, 0); - if (!mdhd) { + mdhd = findTag(sound, MDHD_TAG, 0); + if (!mdhd) { warning("SE::start_sound failed: Couldn't find %s", MDHD_TAG); return false; } |