aboutsummaryrefslogtreecommitdiff
path: root/engines/gnap/resource.cpp
diff options
context:
space:
mode:
authorStrangerke2016-04-12 08:00:11 +0200
committerEugene Sandulenko2016-05-10 09:54:21 +0200
commit43c65df52620bc7f8cf013c460e77620d331836e (patch)
tree4eb0a0e6ca25bf8a5a8fbb8dec0d5fc3f36ad6c2 /engines/gnap/resource.cpp
parent52f0712b66fff3351ae6c2b5fd8e1abcdaad6001 (diff)
downloadscummvm-rg350-43c65df52620bc7f8cf013c460e77620d331836e.tar.gz
scummvm-rg350-43c65df52620bc7f8cf013c460e77620d331836e.tar.bz2
scummvm-rg350-43c65df52620bc7f8cf013c460e77620d331836e.zip
GNAP: Use debug channels
Diffstat (limited to 'engines/gnap/resource.cpp')
-rw-r--r--engines/gnap/resource.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/engines/gnap/resource.cpp b/engines/gnap/resource.cpp
index eb07d96fdb..ee9f14b602 100644
--- a/engines/gnap/resource.cpp
+++ b/engines/gnap/resource.cpp
@@ -20,6 +20,7 @@
*
*/
+#include "gnap/gnap.h"
#include "gnap/resource.h"
namespace Gnap {
@@ -36,8 +37,8 @@ void SequenceFrame::loadFromStream(Common::MemoryReadStream &stream) {
_spriteId = stream.readUint32LE();
_soundId = stream.readUint32LE();
_unusedVal = stream.readUint32LE();
- //isScaled = 0;//DEBUG
- debug(1, "SequenceFrame() spriteId: %d; soundId: %d", _spriteId, _soundId);
+
+ debugC(kDebugBasic, "SequenceFrame() spriteId: %d; soundId: %d", _spriteId, _soundId);
}
// SequenceAnimation
@@ -48,7 +49,7 @@ void SequenceAnimation::loadFromStream(Common::MemoryReadStream &stream) {
_additionalDelay = stream.readUint32LE();
_framesCount = stream.readUint16LE();
_maxTotalDuration = stream.readUint16LE();
- debug(1, "SequenceAnimation() framesCount: %d", _framesCount);
+ debugC(kDebugBasic, "SequenceAnimation() framesCount: %d", _framesCount);
frames = new SequenceFrame[_framesCount];
for (int i = 0; i < _framesCount; ++i)
frames[i].loadFromStream(stream);
@@ -69,10 +70,10 @@ SequenceResource::SequenceResource(int resourceId, byte *data, uint32 size) {
_yOffs = stream.readUint16LE();
_animationsCount = stream.readUint32LE();
_animations = new SequenceAnimation[_animationsCount];
- debug(1, "SequenceResource() _animationsCount: %d", _animationsCount);
+ debugC(kDebugBasic, "SequenceResource() _animationsCount: %d", _animationsCount);
for (int i = 0; i < _animationsCount; ++i) {
uint32 animationOffs = stream.readUint32LE();
- debug(1, "animationOffs: %08X", animationOffs);
+ debugC(kDebugBasic, "animationOffs: %08X", animationOffs);
uint32 oldOffs = stream.pos();
stream.seek(animationOffs);
_animations[i].loadFromStream(stream);
@@ -97,7 +98,7 @@ SpriteResource::SpriteResource(int resourceId, byte *data, uint32 size) {
_colorsCount = READ_LE_UINT16(_data + 10);
_palette = (uint32*)(_data + 12);
_pixels = _data + 12 + _colorsCount * 4;
- debug(1, "SpriteResource() width: %d; height: %d; colorsCount: %d", _width, _height, _colorsCount);
+ debugC(kDebugBasic, "SpriteResource() width: %d; height: %d; colorsCount: %d", _width, _height, _colorsCount);
}
SpriteResource::~SpriteResource() {