diff options
-rw-r--r-- | base/main.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/base/main.cpp b/base/main.cpp index 2737265bca..e353d78deb 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -64,6 +64,8 @@ static bool launcherDialog(OSystem &system) { system.initSize(320, 200); system.endGFXTransaction(); + // Set initial window caption + system.setWindowCaption(gScummVMFullVersion); // Clear the main screen system.clearScreen(); @@ -270,9 +272,6 @@ extern "C" int scummvm_main(int argc, char *argv[]) { // the command line params) was read. system.initBackend(); - // Set initial window caption - system.setWindowCaption(gScummVMFullVersion); - // Unless a game was specified, show the launcher dialog if (0 == ConfMan.getActiveDomain()) { launcherDialog(system); |