From 7561bd9dfbf325a15d330caef00438cafc9f7ab3 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Tue, 19 May 2009 01:13:29 +0000 Subject: Remov lots of superfluous debug output. svn-id: r40715 --- engines/kyra/sequences_mr.cpp | 7 ------- 1 file changed, 7 deletions(-) (limited to 'engines/kyra/sequences_mr.cpp') diff --git a/engines/kyra/sequences_mr.cpp b/engines/kyra/sequences_mr.cpp index eb4c881e55..deeade5e30 100644 --- a/engines/kyra/sequences_mr.cpp +++ b/engines/kyra/sequences_mr.cpp @@ -29,7 +29,6 @@ namespace Kyra { void KyraEngine_MR::showBadConscience() { - debugC(9, kDebugLevelMain, "KyraEngine_MR::showBadConscience()"); if (_badConscienceShown) return; @@ -91,7 +90,6 @@ void KyraEngine_MR::showBadConscience() { } void KyraEngine_MR::hideBadConscience() { - debugC(9, kDebugLevelMain, "KyraEngine_MR::hideBadConscience()"); if (!_badConscienceShown) return; @@ -110,7 +108,6 @@ void KyraEngine_MR::hideBadConscience() { } void KyraEngine_MR::showGoodConscience() { - debugC(9, kDebugLevelMain, "KyraEngine_MR::showGoodConscience()"); if (_goodConscienceShown) return; @@ -165,7 +162,6 @@ void KyraEngine_MR::showGoodConscience() { } void KyraEngine_MR::hideGoodConscience() { - debugC(9, kDebugLevelMain, "KyraEngine_MR::hideGoodConscience()"); if (!_goodConscienceShown) return; @@ -184,7 +180,6 @@ void KyraEngine_MR::hideGoodConscience() { } void KyraEngine_MR::eelScript() { - debugC(9, kDebugLevelMain, "KyraEngine_MR::eelScript()"); if (_chatText) return; _screen->hideMouse(); @@ -230,7 +225,6 @@ void KyraEngine_MR::eelScript() { } int KyraEngine_MR::initAnimationShapes(uint8 *filedata) { - debugC(9, kDebugLevelAnimator, "KyraEngine_MR::initAnimationShapes(%p)", (const void*)filedata); const int lastEntry = MIN(_animShapeLastEntry, 41); for (int i = 0; i < lastEntry; ++i) _gameShapes[9+i] = _screen->getPtrToShape(filedata, i); @@ -238,7 +232,6 @@ int KyraEngine_MR::initAnimationShapes(uint8 *filedata) { } void KyraEngine_MR::uninitAnimationShapes(int count, uint8 *filedata) { - debugC(9, kDebugLevelAnimator, "KyraEngine_MR::uninitAnimationShapes(%d, %p)", count, (const void*)filedata); for (int i = 0; i < count; ++i) _gameShapes[9+i] = 0; delete[] filedata; -- cgit v1.2.3