diff options
author | Paul Gilbert | 2014-09-04 22:07:16 -0400 |
---|---|---|
committer | Paul Gilbert | 2014-09-04 22:07:16 -0400 |
commit | bfbcc9f3e402f4b3180553374f6eeb8f7136808b (patch) | |
tree | 6bd767b3e4298db1b78f29ebca79821163c4fa0a /engines/mads | |
parent | 6c25604b9ac38024dccaa89de2295170deb413f6 (diff) | |
download | scummvm-rg350-bfbcc9f3e402f4b3180553374f6eeb8f7136808b.tar.gz scummvm-rg350-bfbcc9f3e402f4b3180553374f6eeb8f7136808b.tar.bz2 scummvm-rg350-bfbcc9f3e402f4b3180553374f6eeb8f7136808b.zip |
MADS: Fix text not showing at all for Quotes
Diffstat (limited to 'engines/mads')
-rw-r--r-- | engines/mads/nebular/menu_nebular.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/nebular/menu_nebular.cpp b/engines/mads/nebular/menu_nebular.cpp index d34f62a3c0..88453ecdba 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 |