aboutsummaryrefslogtreecommitdiff
path: root/engines/prince/prince.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/prince/prince.cpp')
-rw-r--r--engines/prince/prince.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/prince/prince.cpp b/engines/prince/prince.cpp
index 33750d50c7..9f01796270 100644
--- a/engines/prince/prince.cpp
+++ b/engines/prince/prince.cpp
@@ -2664,8 +2664,8 @@ void PrinceEngine::runDialog() {
while (!shouldQuit()) {
+ _interpreter->stepBg();
drawScreen();
- // TODO - background iterpreter?
int dialogX = (640 - _dialogWidth) / 2;
int dialogY = 460 - _dialogHeight;
@@ -4431,7 +4431,8 @@ void PrinceEngine::mainLoop() {
return;
}
- _interpreter->step();
+ _interpreter->stepBg();
+ _interpreter->stepFg();
drawScreen();