diff options
Diffstat (limited to 'gui/message.cpp')
-rw-r--r-- | gui/message.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/message.cpp b/gui/message.cpp index da89a0a385..96d620bb07 100644 --- a/gui/message.cpp +++ b/gui/message.cpp @@ -83,7 +83,7 @@ MessageDialog::MessageDialog(const Common::String &message, const char *defaultB // Each line is represented by one static text item. for (int i = 0; i < lineCount; i++) { new StaticTextWidget(this, 10, 10 + i * kLineHeight, maxlineWidth, kLineHeight, - lines[i], kTextAlignCenter, ws); + lines[i], kTextAlignCenter); } // FIXME - allow for more than two buttons, and return in runModal() which one |