From 0a90aca897c5b6bfca5183a375277dbfb9981464 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Tue, 7 Feb 2017 21:13:25 +0100 Subject: DIRECTOR: Remove noisy and obsolete debug output --- engines/director/score.cpp | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'engines') diff --git a/engines/director/score.cpp b/engines/director/score.cpp index 04371e392a..fbb89e41c6 100644 --- a/engines/director/score.cpp +++ b/engines/director/score.cpp @@ -366,35 +366,22 @@ void Score::loadCastData(Common::SeekableSubReadStreamEndian &stream, uint16 id, switch (castType) { case kCastBitmap: - warning("CASt: Bitmap"); - Common::hexdump(data, size1 + 16); _casts[id] = new BitmapCast(castStream, _vm->getVersion()); _casts[id]->type = kCastBitmap; break; case kCastText: - warning("CASt: Text"); - Common::hexdump(data, size1 + 16); _casts[id] = new TextCast(castStream, _vm->getVersion()); _casts[id]->type = kCastText; break; case kCastShape: - warning("CASt: Shape"); - Common::hexdump(data, size1 + 16); - _casts[id] = new ShapeCast(castStream, _vm->getVersion()); _casts[id]->type = kCastShape; break; case kCastButton: - warning("CASt: Button"); - Common::hexdump(data, size1 + 16); - _casts[id] = new ButtonCast(castStream, _vm->getVersion()); _casts[id]->type = kCastButton; break; case kCastLingoScript: - warning("CASt: Script"); - Common::hexdump(data, size1 + 16); - _casts[id] = new ScriptCast(castStream, _vm->getVersion()); _casts[id]->type = kCastLingoScript; break; -- cgit v1.2.3