diff options
author | Eugene Sandulenko | 2017-02-22 16:47:14 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2017-02-22 16:47:14 +0100 |
commit | d2fe6628f2ac6542f6c39ffeff06c254be52a5e8 (patch) | |
tree | fb00b155f128ae424cafb917ed0a63f8d054d396 | |
parent | 59f2d1359c55f9f5d7d0c8a7985ff838946e881c (diff) | |
download | scummvm-rg350-d2fe6628f2ac6542f6c39ffeff06c254be52a5e8.tar.gz scummvm-rg350-d2fe6628f2ac6542f6c39ffeff06c254be52a5e8.tar.bz2 scummvm-rg350-d2fe6628f2ac6542f6c39ffeff06c254be52a5e8.zip |
DIRECTOR: Added more debug output
-rw-r--r-- | engines/director/score.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/director/score.cpp b/engines/director/score.cpp index 9987ab59a0..eb4099275e 100644 --- a/engines/director/score.cpp +++ b/engines/director/score.cpp @@ -650,6 +650,9 @@ void Score::loadCastInfo(Common::SeekableSubReadStreamEndian &stream, uint16 id) ci->fileName = getString(castStrings[3]); ci->type = castStrings[4]; + debugC(5, kDebugLoading, "CastInfo: name: '%s' directory: '%s', fileName: '%s', type: '%s'", + ci->name.c_str(), ci->directory.c_str(), ci->fileName.c_str(), ci->type.c_str()); + _castsInfo[id] = ci; } |