diff options
| author | Sven Hesse | 2008-05-17 19:01:00 +0000 | 
|---|---|---|
| committer | Sven Hesse | 2008-05-17 19:01:00 +0000 | 
| commit | 6e13bde2130fb12f7d307c4fcdedd8e36e3038bb (patch) | |
| tree | e47f3ec74503f4b0c8f7a3a0b06c9b7fbdf013d7 /engines/gob/inter_v2.cpp | |
| parent | 2e14d05caa043848f7d74f53117bce284c325b12 (diff) | |
| download | scummvm-rg350-6e13bde2130fb12f7d307c4fcdedd8e36e3038bb.tar.gz scummvm-rg350-6e13bde2130fb12f7d307c4fcdedd8e36e3038bb.tar.bz2 scummvm-rg350-6e13bde2130fb12f7d307c4fcdedd8e36e3038bb.zip | |
Changing debug channels a bit
svn-id: r32157
Diffstat (limited to 'engines/gob/inter_v2.cpp')
| -rw-r--r-- | engines/gob/inter_v2.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/engines/gob/inter_v2.cpp b/engines/gob/inter_v2.cpp index 493efa8438..6278a6e22f 100644 --- a/engines/gob/inter_v2.cpp +++ b/engines/gob/inter_v2.cpp @@ -1087,6 +1087,8 @@ void Inter_v2::o2_playCDTrack() {  }  void Inter_v2::o2_waitCDTrackEnd() { +	debugC(1, kDebugSound, "CDROM: Waiting for playback to end"); +  	while (_vm->_sound->cdGetTrackPos() >= 0)  		_vm->_util->longDelay(1);  } @@ -2056,7 +2058,6 @@ void Inter_v2::o2_loadInfogramesIns(OpGobParams ¶ms) {  	strncpy0(fileName, GET_VAR_STR(varName), 15);  	strcat(fileName, ".INS"); -	debugC(1, kDebugMusic, "Loading Infogrames instrument file \"%s\"", fileName);  	_vm->_sound->infogramesLoadInstruments(fileName);  } @@ -2069,7 +2070,6 @@ void Inter_v2::o2_playInfogrames(OpGobParams ¶ms) {  	strncpy0(fileName, GET_VAR_STR(varName), 15);  	strcat(fileName, ".DUM"); -	debugC(1, kDebugMusic, "Playing Infogrames music file \"%s\"", fileName);  	_vm->_sound->infogramesLoadSong(fileName);  	_vm->_sound->infogramesPlay(); | 
