[Scummvm-cvs-logs] scummvm master -> bfbcc9f3e402f4b3180553374f6eeb8f7136808b

dreammaster dreammaster at scummvm.org
Fri Sep 5 04:08:04 CEST 2014


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
bfbcc9f3e4 MADS: Fix text not showing at all for Quotes


Commit: bfbcc9f3e402f4b3180553374f6eeb8f7136808b
    https://github.com/scummvm/scummvm/commit/bfbcc9f3e402f4b3180553374f6eeb8f7136808b
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2014-09-04T22:07:16-04:00

Commit Message:
MADS: Fix text not showing at all for Quotes

Changed paths:
    engines/mads/nebular/menu_nebular.cpp



diff --git a/engines/mads/nebular/menu_nebular.cpp b/engines/mads/nebular/menu_nebular.cpp
index d34f62a..88453ec 100644
--- a/engines/mads/nebular/menu_nebular.cpp
+++ b/engines/mads/nebular/menu_nebular.cpp
@@ -673,6 +673,7 @@ void TextView::doFrame() {
 	if (currTime < _scrollTimeout)
 		return;
 	_scrollTimeout = g_system->getMillis() + TEXT_ANIMATION_DELAY;
+	_redrawFlag = true;
 
 	// If any panning values are set, pan the background surface
 	if ((_pan.x != 0) || (_pan.y != 0)) {
@@ -718,7 +719,6 @@ void TextView::doFrame() {
 
 		// Flag for a full screen refresh
 		scene._spriteSlots.fullRefresh();
-		_redrawFlag = true;
 	}
 
 	// Scroll all active text lines up






More information about the Scummvm-git-logs mailing list