aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/fileset.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sludge/fileset.cpp')
-rw-r--r--engines/sludge/fileset.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sludge/fileset.cpp b/engines/sludge/fileset.cpp
index 0a68f7a5b2..deb4a22147 100644
--- a/engines/sludge/fileset.cpp
+++ b/engines/sludge/fileset.cpp
@@ -226,15 +226,15 @@ void setFileIndices(Common::File *fp, int numLanguages, unsigned int skipBefore)
startOfSubIndex = fp->pos() + 4;
fp->seek(fp->readUint32LE(), SEEK_CUR);
- debug(kSludgeDebugDataLoad, "startOfSubIndex: %i", startOfTextIndex);
+ debug(kSludgeDebugDataLoad, "startOfSubIndex: %i", startOfSubIndex);
startOfObjectIndex = fp->pos() + 4;
fp->seek(fp->readUint32LE(), SEEK_CUR);
- debug(kSludgeDebugDataLoad, "startOfObjectIndex: %i", startOfTextIndex);
+ debug(kSludgeDebugDataLoad, "startOfObjectIndex: %i", startOfObjectIndex);
// Remember that the data section starts here
startOfDataIndex = fp->pos();
- debug(kSludgeDebugDataLoad, "startOfDataIndex: %i", startOfTextIndex);
+ debug(kSludgeDebugDataLoad, "startOfDataIndex: %i", startOfDataIndex);
}
} // End of namespace Sludge