From 9d20c7e21f98b2f8824f86ef7c297781f46a7f49 Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Sun, 8 May 2005 16:27:16 +0000 Subject: Changed error() to warning() since it appears to be relatively harmless. Is the 'start' field even used? Anyway, the entrance to the forest can now be entered. The animation code will produce an "Anim::play: Error decoding frame 40!" warning in addition to the previous one, but I don't see any visible errors in the scene. svn-id: r17968 --- saga/animation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saga/animation.cpp b/saga/animation.cpp index 5948cb78d5..963bb11faa 100644 --- a/saga/animation.cpp +++ b/saga/animation.cpp @@ -438,7 +438,7 @@ void Anim::readAnimHeader(MemoryReadStreamEndian &readS, ANIMATION_HEADER &ah) { ah.start = readS.readUint16BE(); if (ah.start != 65535 && ah.start != 0) - error("Anim::readAnimHeader(): found different start: %d. Fix Anim::play()", ah.start); + warning("Anim::readAnimHeader(): found different start: %d. Fix Anim::play()", ah.start); ah.start += readS.pos(); } -- cgit v1.2.3