diff options
Diffstat (limited to 'base')
-rw-r--r-- | base/main.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/base/main.cpp b/base/main.cpp index 8030866e3d..f51e97dfdd 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -324,8 +324,9 @@ extern "C" int scummvm_main(int argc, char *argv[]) { // PluginManager::instance().unloadPlugins(); PluginManager::instance().loadPlugins(); } else { - GUI::MessageDialog alert("Could not find any engine capable of running the selected game!"); - alert.runModal(); + // A dialog would be nicer, but we don't have any + // screen to draw on yet. + warning("Could not find any engine capable of running the selected game"); } launcherDialog(system); |