aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm
diff options
context:
space:
mode:
authorEugene Sandulenko2016-05-15 10:54:59 +0200
committerEugene Sandulenko2016-05-15 10:54:59 +0200
commit05419d7c354ab4befd132f8c7b254336ec0578bf (patch)
treebdac182b1b776aa5a6af8d65fd2d9b9dec7e02a7 /engines/scumm
parent6d941a359467363d1f1c9de78455e0655b612323 (diff)
downloadscummvm-rg350-05419d7c354ab4befd132f8c7b254336ec0578bf.tar.gz
scummvm-rg350-05419d7c354ab4befd132f8c7b254336ec0578bf.tar.bz2
scummvm-rg350-05419d7c354ab4befd132f8c7b254336ec0578bf.zip
SCUMM HE: Hid another noisy debug message
Diffstat (limited to 'engines/scumm')
-rw-r--r--engines/scumm/he/sprite_he.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/scumm/he/sprite_he.cpp b/engines/scumm/he/sprite_he.cpp
index 4044d8a719..e3f04dfcf0 100644
--- a/engines/scumm/he/sprite_he.cpp
+++ b/engines/scumm/he/sprite_he.cpp
@@ -746,12 +746,10 @@ void Sprite::setSpriteZBuffer(int spriteId, int value) {
}
void Sprite::setSpriteGeneralProperty(int spriteId, int type, int value) {
- debug(0, "setSpriteGeneralProperty: spriteId %d type 0x%x value 0x%x", spriteId, type, value);
+ debug(6, "setSpriteGeneralProperty: spriteId %d type 0x%x value 0x%x", spriteId, type, value);
assertRange(1, spriteId, _varNumSprites, "sprite");
int32 delay;
- // XXX U32 related check
-
switch (type) {
case 0x7B:
_spriteTable[spriteId].imgFlags = value;