diff options
author | Nicola Mettifogo | 2007-04-23 17:08:19 +0000 |
---|---|---|
committer | Nicola Mettifogo | 2007-04-23 17:08:19 +0000 |
commit | 0f8c1d4200fcc72086cab52b2930946e409e39f7 (patch) | |
tree | 8a4e03d2e1680d3891d58ef140f5afa913845d74 | |
parent | ea7157c5b8d2847376c940bb70ee15434f845d5e (diff) | |
download | scummvm-rg350-0f8c1d4200fcc72086cab52b2930946e409e39f7.tar.gz scummvm-rg350-0f8c1d4200fcc72086cab52b2930946e409e39f7.tar.bz2 scummvm-rg350-0f8c1d4200fcc72086cab52b2930946e409e39f7.zip |
Tiny fix for missing text in slides.
svn-id: r26579
-rw-r--r-- | engines/parallaction/location.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/parallaction/location.cpp b/engines/parallaction/location.cpp index 93c26e8671..d23be6117b 100644 --- a/engines/parallaction/location.cpp +++ b/engines/parallaction/location.cpp @@ -279,6 +279,7 @@ void Parallaction::showSlide(const char *name) { _ax <<= 3; // text width uint16 _dx = (SCREEN_WIDTH - _ax) >> 1; // center text _gfx->displayString(_dx, 14, _slideText[0]); // displays text on screen + _gfx->updateScreen(); waitUntilLeftClick(); |