aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gfx.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2013-07-30 14:29:15 +0300
committerEugene Sandulenko2013-09-06 14:51:08 +0300
commit274f7d173741e8189c5ed5fa9583aec102a38f37 (patch)
tree160457fa08254944dd3c4bebbac042d251438f21 /engines/fullpipe/gfx.cpp
parenteeec3a79cb656d76617d923bbf463aa30460ba67 (diff)
downloadscummvm-rg350-274f7d173741e8189c5ed5fa9583aec102a38f37.tar.gz
scummvm-rg350-274f7d173741e8189c5ed5fa9583aec102a38f37.tar.bz2
scummvm-rg350-274f7d173741e8189c5ed5fa9583aec102a38f37.zip
FULLPIPE: Implement stubs for ModalObject
Diffstat (limited to 'engines/fullpipe/gfx.cpp')
-rw-r--r--engines/fullpipe/gfx.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp
index 88b86630b9..997c0b620b 100644
--- a/engines/fullpipe/gfx.cpp
+++ b/engines/fullpipe/gfx.cpp
@@ -406,7 +406,7 @@ void Picture::drawRotated(int x, int y, int angle) {
}
void Picture::displayPicture() {
- if (g_fullpipe->_needQuit)
+ if (!g_fullpipe->_gameContinue)
return;
getData();
@@ -424,7 +424,7 @@ void Picture::displayPicture() {
g_fullpipe->_system->delayMillis(10);
g_fullpipe->_system->updateScreen();
- while (!g_fullpipe->_needQuit) {
+ while (g_fullpipe->_gameContinue) {
g_fullpipe->updateEvents();
g_fullpipe->_system->delayMillis(10);
g_fullpipe->_system->updateScreen();