aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlyssa Milburn2011-03-11 19:15:19 +0100
committerAlyssa Milburn2011-03-11 19:15:56 +0100
commitba606e369338dcb77946f82ba02ed1ca266f28d5 (patch)
treeedb224a9325696486f7f172e04494461d3340786
parent5acac402af8d31cae2b10884fab4d7571fdc2cca (diff)
downloadscummvm-rg350-ba606e369338dcb77946f82ba02ed1ca266f28d5.tar.gz
scummvm-rg350-ba606e369338dcb77946f82ba02ed1ca266f28d5.tar.bz2
scummvm-rg350-ba606e369338dcb77946f82ba02ed1ca266f28d5.zip
MOHAWK: Don't warn about odd LB version record sizes.
-rw-r--r--engines/mohawk/livingbooks.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/mohawk/livingbooks.cpp b/engines/mohawk/livingbooks.cpp
index 5d6c57adfe..1f07c9e390 100644
--- a/engines/mohawk/livingbooks.cpp
+++ b/engines/mohawk/livingbooks.cpp
@@ -555,8 +555,9 @@ void MohawkEngine_LivingBooks::queueDelayedEvent(DelayedEvent event) {
uint16 MohawkEngine_LivingBooks::getResourceVersion() {
Common::SeekableReadStream *versionStream = getResource(ID_VRSN, 1000);
+ // FIXME: some V2 games have very strange version entries
if (versionStream->size() != 2)
- warning("Version Record size mismatch");
+ debug(1, "Version Record size mismatch");
uint16 version = versionStream->readUint16BE();