aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/sound.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2013-07-12 09:03:02 +0300
committerEugene Sandulenko2013-09-06 14:48:17 +0300
commit56cb726ebc4446dfab6e625502a1589253deae4f (patch)
tree6dee12b157920237bf19c5ba08e4e734bc73f55a /engines/fullpipe/sound.cpp
parentf18e318f788d126b6c39232afaf0012ef401d55d (diff)
downloadscummvm-rg350-56cb726ebc4446dfab6e625502a1589253deae4f.tar.gz
scummvm-rg350-56cb726ebc4446dfab6e625502a1589253deae4f.tar.bz2
scummvm-rg350-56cb726ebc4446dfab6e625502a1589253deae4f.zip
FULLPIPE: Added lots of debug output, Picture::setAOIDs() implementation
Diffstat (limited to 'engines/fullpipe/sound.cpp')
-rw-r--r--engines/fullpipe/sound.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/fullpipe/sound.cpp b/engines/fullpipe/sound.cpp
index bdbc8da762..43b8e11f8f 100644
--- a/engines/fullpipe/sound.cpp
+++ b/engines/fullpipe/sound.cpp
@@ -34,6 +34,8 @@ SoundList::SoundList() {
}
bool SoundList::load(MfcArchive &file, char *fname) {
+ debug(5, "SoundList::load()");
+
_soundItemsCount = file.readUint32LE();
_soundItems = (Sound **)calloc(_soundItemsCount, sizeof(Sound *));
@@ -75,6 +77,8 @@ Sound::Sound() {
bool Sound::load(MfcArchive &file, NGIArchive *archive) {
+ debug(5, "Sound::load()");
+
MemoryObject::load(file);
_id = file.readUint32LE();