aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Brown2002-03-05 15:50:11 +0000
committerJames Brown2002-03-05 15:50:11 +0000
commit441ad35080de4172e4262e653bd3929c35875574 (patch)
tree4c086d09fe86de1c3180c5e9d866ee420c3492a8
parentd700f88c90b74f7b80fdeeb331362241778ffb35 (diff)
downloadscummvm-rg350-441ad35080de4172e4262e653bd3929c35875574.tar.gz
scummvm-rg350-441ad35080de4172e4262e653bd3929c35875574.tar.bz2
scummvm-rg350-441ad35080de4172e4262e653bd3929c35875574.zip
Removed some debugging messages.
svn-id: r3647
-rw-r--r--sound/imuse.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/imuse.cpp b/sound/imuse.cpp
index 4bc67c26f7..d074e78056 100644
--- a/sound/imuse.cpp
+++ b/sound/imuse.cpp
@@ -41,9 +41,9 @@ int num_mix;
#define COMMAND_ID 1
#ifdef SAMNMAX
-#define MDHD_TAG "MDpg"
+ #define MDHD_TAG "MDpg"
#else
-#define MDHD_TAG "MDhd"
+ #define MDHD_TAG "MDhd"
#endif
int clamp(int val, int min, int max) {
@@ -1059,12 +1059,12 @@ int Player::start_seq_sound(int sound) {
void Player::set_tempo(uint32 b) {
uint32 i,j;
-printf("is: %d\n", _se->_s->_gameTempo);
+
if (_se->_s->_gameTempo < 1000)
i = TEMPO_BASE;
else
i = _se->_s->_gameTempo;
- printf("Tempo set to: %d\n", i);
+
j = _tempo = b;
while (i&0xFFFF0000 || j&0xFFFF0000) { i>>=1; j>>=1; }