diff options
author | Johannes Schickel | 2010-02-19 14:16:43 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-02-19 14:16:43 +0000 |
commit | b3bfe83877c27e0df3566041584a737388685fb6 (patch) | |
tree | f6a940eb7977eb124ca09488218e52f686079aeb /engines | |
parent | 049b4384bcfeaad3fba5678dbfee08ebcd3d7f0c (diff) | |
download | scummvm-rg350-b3bfe83877c27e0df3566041584a737388685fb6.tar.gz scummvm-rg350-b3bfe83877c27e0df3566041584a737388685fb6.tar.bz2 scummvm-rg350-b3bfe83877c27e0df3566041584a737388685fb6.zip |
Fix for bug #2954286 "Gob: ScummVM quits on pause".
svn-id: r48090
Diffstat (limited to 'engines')
-rw-r--r-- | engines/gob/gob.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/gob.cpp b/engines/gob/gob.cpp index 81b15f6d57..cf2f090351 100644 --- a/engines/gob/gob.cpp +++ b/engines/gob/gob.cpp @@ -84,7 +84,7 @@ private: GUI::StaticTextWidget *_text; }; -PauseDialog::PauseDialog() : GUI::Dialog("PauseDialog") { +PauseDialog::PauseDialog() : GUI::Dialog(0, 0, 0, 0) { _backgroundType = GUI::ThemeEngine::kDialogBackgroundSpecial; _message = "Game paused. Press Ctrl+p again to continue."; |