aboutsummaryrefslogtreecommitdiffstats
path: root/src/systems/dialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/systems/dialog.cpp')
-rw-r--r--src/systems/dialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systems/dialog.cpp b/src/systems/dialog.cpp
index 76c0f93..87327ca 100644
--- a/src/systems/dialog.cpp
+++ b/src/systems/dialog.cpp
@@ -51,7 +51,7 @@ void DialogSystem::receive(const MouseClickEvent &mce)
d.talking = true;
if (d.index == 9999) {
- UISystem::dialogBox(name.name, /*"", false,*/ randomDialog[d.rindex % randomDialog.size()]);
+ UISystem::dialogBox(name.name, randomDialog[d.rindex % randomDialog.size()]);
UISystem::waitForDialog();
} else if (exml != nullptr) {
while (exml->StrAttribute("name") != name.name)
@@ -96,7 +96,7 @@ void DialogSystem::receive(const MouseClickEvent &mce)
if (qname != nullptr && QuestSystem::finish(qname) == 0) {
d.index = 9999;
} else {
- UISystem::dialogBox(name.name, /*"", false,*/ "Finish my quest u nug");
+ UISystem::dialogBox(name.name, "Finish my quest u nug");
UISystem::waitForDialog();
return;
}