diff options
author | Eugene Sandulenko | 2010-06-15 10:18:08 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2010-06-15 10:18:08 +0000 |
commit | f992721361d182223f1f551fe8bbfd030a27bd1f (patch) | |
tree | 3bd2696f0d3dc22b843bdbf5ac162dd2daa4db72 /engines/drascula | |
parent | b78663f6fb45728fd90da0c91f5432e1389e421e (diff) | |
download | scummvm-rg350-f992721361d182223f1f551fe8bbfd030a27bd1f.tar.gz scummvm-rg350-f992721361d182223f1f551fe8bbfd030a27bd1f.tar.bz2 scummvm-rg350-f992721361d182223f1f551fe8bbfd030a27bd1f.zip |
Drascula: hid room updater-related debug output to deeper level
svn-id: r49702
Diffstat (limited to 'engines/drascula')
-rw-r--r-- | engines/drascula/rooms.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/drascula/rooms.cpp b/engines/drascula/rooms.cpp index a71545feca..57bfad26af 100644 --- a/engines/drascula/rooms.cpp +++ b/engines/drascula/rooms.cpp @@ -1091,7 +1091,7 @@ void DrasculaEngine::updateRefresh() { sprintf(rm, "update_%d", roomNumber); for (uint i = 0; i < _roomHandlers->roomUpdaters.size(); i++) { if (!strcmp(rm, _roomHandlers->roomUpdaters[i]->desc)) { - debug(4, "Calling room updater %d", roomNumber); + debug(8, "Calling room updater %d", roomNumber); (this->*(_roomHandlers->roomUpdaters[i]->proc))(); break; } @@ -1129,7 +1129,7 @@ void DrasculaEngine::updateRefresh_pre() { sprintf(rm, "update_%d_pre", roomNumber); for (uint i = 0; i < _roomHandlers->roomPreupdaters.size(); i++) { if (!strcmp(rm, _roomHandlers->roomPreupdaters[i]->desc)) { - debug(4, "Calling room preupdater %d", roomNumber); + debug(8, "Calling room preupdater %d", roomNumber); (this->*(_roomHandlers->roomPreupdaters[i]->proc))(); break; } |