aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/sequences_mr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/kyra/sequences_mr.cpp')
-rw-r--r--engines/kyra/sequences_mr.cpp7
1 files changed, 0 insertions, 7 deletions
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;