diff options
Diffstat (limited to 'engines/mads/nebular')
-rw-r--r-- | engines/mads/nebular/game_nebular.cpp | 6 |
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; } |