aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/nebular
diff options
context:
space:
mode:
authorPaul Gilbert2014-02-22 17:25:30 -0500
committerPaul Gilbert2014-02-22 17:25:30 -0500
commit6c354bccf253118d459f92f16d8f702ae07806fb (patch)
treee2b5dc5788d9e26e7b1b2180c3c99043b4ebaa5f /engines/mads/nebular
parent3df12371873cb8e3380422aa3095e367408526af (diff)
downloadscummvm-rg350-6c354bccf253118d459f92f16d8f702ae07806fb.tar.gz
scummvm-rg350-6c354bccf253118d459f92f16d8f702ae07806fb.tar.bz2
scummvm-rg350-6c354bccf253118d459f92f16d8f702ae07806fb.zip
MADS: Implemented more logic for dialog display
Diffstat (limited to 'engines/mads/nebular')
-rw-r--r--engines/mads/nebular/game_nebular.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/mads/nebular/game_nebular.cpp b/engines/mads/nebular/game_nebular.cpp
index 10c210c6eb..dc2b1450ec 100644
--- a/engines/mads/nebular/game_nebular.cpp
+++ b/engines/mads/nebular/game_nebular.cpp
@@ -41,7 +41,11 @@ bool GameNebular::checkCopyProtection() {
if (!ConfMan.getBool("copy_protection"))
return true;
- CopyProtectionDialog::show(_vm);
+ MessageDialog *dlg = new MessageDialog(_vm, 40, "Line 1", "Line 2", nullptr);
+ dlg->show();
+ delete dlg;
+
+ //CopyProtectionDialog::show(_vm);
return false;
}