[Scummvm-cvs-logs] SF.net SVN: scummvm: [30089] scummvm/branches/branch-0-11-0/engines/scumm/ gfx.cpp
eriktorbjorn at users.sourceforge.net
eriktorbjorn at users.sourceforge.net
Sun Dec 30 23:28:55 CET 2007
Revision: 30089
http://scummvm.svn.sourceforge.net/scummvm/?rev=30089&view=rev
Author: eriktorbjorn
Date: 2007-12-30 14:28:55 -0800 (Sun, 30 Dec 2007)
Log Message:
-----------
Back-ported fix for drawing subtitles over the CoMI verb coin, instead of under
it.
Modified Paths:
--------------
scummvm/branches/branch-0-11-0/engines/scumm/gfx.cpp
Modified: scummvm/branches/branch-0-11-0/engines/scumm/gfx.cpp
===================================================================
--- scummvm/branches/branch-0-11-0/engines/scumm/gfx.cpp 2007-12-30 22:22:38 UTC (rev 30088)
+++ scummvm/branches/branch-0-11-0/engines/scumm/gfx.cpp 2007-12-30 22:28:55 UTC (rev 30089)
@@ -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