aboutsummaryrefslogtreecommitdiff
path: root/engines/lure/surface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/lure/surface.cpp')
-rw-r--r--engines/lure/surface.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/lure/surface.cpp b/engines/lure/surface.cpp
index 7bde6bb217..99e6256821 100644
--- a/engines/lure/surface.cpp
+++ b/engines/lure/surface.cpp
@@ -493,8 +493,11 @@ void Dialog::show(const char *text) {
mouse.cursorOff();
room.update();
+ debugC(ERROR_DETAILED, kLureDebugStrings, "Dialog::show creating dialog");
Surface *s = Surface::newDialog(INFO_DIALOG_WIDTH, text);
+ debugC(ERROR_DETAILED, kLureDebugStrings, "Dialog::show created dialog");
s->copyToScreen(INFO_DIALOG_X, INFO_DIALOG_Y);
+ debugC(ERROR_DETAILED, kLureDebugStrings, "Dialog::show copied to screen");
// Wait for a keypress or mouse button
Events::getReference().waitForPress();