aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/music.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2007-01-13 15:35:02 +0000
committerEugene Sandulenko2007-01-13 15:35:02 +0000
commit24c9735588ac8d914b8f058cf68373b4e9a67071 (patch)
tree7100d5cb797f0c71eda254feb084ab49ed534c02 /engines/gob/music.cpp
parentbad2b283c12e09eaa3c72f9ca67913b2a14afd03 (diff)
downloadscummvm-rg350-24c9735588ac8d914b8f058cf68373b4e9a67071.tar.gz
scummvm-rg350-24c9735588ac8d914b8f058cf68373b4e9a67071.tar.bz2
scummvm-rg350-24c9735588ac8d914b8f058cf68373b4e9a67071.zip
Rename special debug levels to conform our suggested naming scheme.
svn-id: r25073
Diffstat (limited to 'engines/gob/music.cpp')
-rw-r--r--engines/gob/music.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/gob/music.cpp b/engines/gob/music.cpp
index 0bbe71c39c..9bf6c658a9 100644
--- a/engines/gob/music.cpp
+++ b/engines/gob/music.cpp
@@ -162,7 +162,7 @@ void Music::premixerCall(int16 *buf, uint len) {
}
void Music::writeOPL(byte reg, byte val) {
- debugC(6, DEBUG_MUSIC, "writeOPL(%02X, %02X)", reg, val);
+ debugC(6, kDebugMusic, "writeOPL(%02X, %02X)", reg, val);
OPLWriteReg(_opl, reg, val);
}
@@ -443,7 +443,7 @@ void Music::playBgMusic(void) {
void Music::playTrack(const char *trackname) {
if (_playing) return;
- debugC(1, DEBUG_MUSIC, "Music::playTrack(%s)", trackname);
+ debugC(1, kDebugMusic, "Music::playTrack(%s)", trackname);
unloadMusic();
loadMusic(_trackFiles[_vm->_util->getRandom(ARRAYSIZE(_trackFiles))]);
startPlay();