[Scummvm-cvs-logs] SF.net SVN: scummvm:[35333] scummvm/trunk/engines/tinsel
dreammaster at users.sourceforge.net
dreammaster at users.sourceforge.net
Sat Dec 13 11:24:29 CET 2008
Revision: 35333
http://scummvm.svn.sourceforge.net/scummvm/?rev=35333&view=rev
Author: dreammaster
Date: 2008-12-13 10:24:28 +0000 (Sat, 13 Dec 2008)
Log Message:
-----------
Bugfixes for text display and animations in DW1 demo
Modified Paths:
--------------
scummvm/trunk/engines/tinsel/play.cpp
scummvm/trunk/engines/tinsel/tinlib.cpp
Modified: scummvm/trunk/engines/tinsel/play.cpp
===================================================================
--- scummvm/trunk/engines/tinsel/play.cpp 2008-12-13 09:39:00 UTC (rev 35332)
+++ scummvm/trunk/engines/tinsel/play.cpp 2008-12-13 10:24:28 UTC (rev 35333)
@@ -460,7 +460,7 @@
_ctx->reelActor = (int32)FROM_LE_32(pmi->mulID);
/**** New (experimental? bit 5/1/95 ****/
- if (!actorAlive(_ctx->reelActor))
+ if (!TinselV0 && !actorAlive(_ctx->reelActor))
return;
/**** Delete a bit down there if this stays ****/
Modified: scummvm/trunk/engines/tinsel/tinlib.cpp
===================================================================
--- scummvm/trunk/engines/tinsel/tinlib.cpp 2008-12-13 09:39:00 UTC (rev 35332)
+++ scummvm/trunk/engines/tinsel/tinlib.cpp 2008-12-13 10:24:28 UTC (rev 35333)
@@ -3307,7 +3307,8 @@
if ((_ctx->whatSort == IS_SAY) || (_ctx->whatSort == IS_TALK))
GetActorMidTop(_ctx->actor, &_ctx->x, &_ctx->y);
- SetTextPal(GetActorRGB(_ctx->actor));
+ if (!TinselV0)
+ SetTextPal(GetActorRGB(_ctx->actor));
if (TinselV2)
LoadSubString(hText, _ctx->sub, TextBufferAddr(), TBUFSZ);
else {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list