[Scummvm-cvs-logs] SF.net SVN: scummvm: [30088] scummvm/trunk/engines/scumm/gfx.cpp
eriktorbjorn at users.sourceforge.net
eriktorbjorn at users.sourceforge.net
Sun Dec 30 23:22:39 CET 2007
Revision: 30088
http://scummvm.svn.sourceforge.net/scummvm/?rev=30088&view=rev
Author: eriktorbjorn
Date: 2007-12-30 14:22:38 -0800 (Sun, 30 Dec 2007)
Log Message:
-----------
Draw subtitles over the verb coin in CoMI, not under. This is noticeable early
in the game, when Murray is talking to himself. I've verified this against the
behaviour of the original interpreter. (Should this go into 0.11 as well?)
Modified Paths:
--------------
scummvm/trunk/engines/scumm/gfx.cpp
Modified: scummvm/trunk/engines/scumm/gfx.cpp
===================================================================
--- scummvm/trunk/engines/scumm/gfx.cpp 2007-12-30 22:10:24 UTC (rev 30087)
+++ scummvm/trunk/engines/scumm/gfx.cpp 2007-12-30 22:22:38 UTC (rev 30088)
@@ -484,10 +484,14 @@
drawBlastObjects();
} else {
drawBlastObjects();
+ if (_game.version == 8) {
+ // Do this before drawing blast texts. Subtitles go on
+ // top of the CoMI verb coin, e.g. when Murray is
+ // talking to himself early in the game.
+ processUpperActors();
+ }
drawBlastTexts();
}
- if (_game.version == 8)
- processUpperActors();
// Call the original method.
ScummEngine::drawDirtyScreenParts();
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