diff options
| author | Torbjörn Andersson | 2007-04-18 20:59:51 +0000 |
|---|---|---|
| committer | Torbjörn Andersson | 2007-04-18 20:59:51 +0000 |
| commit | a3bde14ead0d99557b5f8fb241b2f70a54e0a718 (patch) | |
| tree | ca8be638b991800937bdc8f64c969e3ebfc88567 /base | |
| parent | 9d50a5a64ff98273008127125fb704d6dfe475f4 (diff) | |
| download | scummvm-rg350-a3bde14ead0d99557b5f8fb241b2f70a54e0a718.tar.gz scummvm-rg350-a3bde14ead0d99557b5f8fb241b2f70a54e0a718.tar.bz2 scummvm-rg350-a3bde14ead0d99557b5f8fb241b2f70a54e0a718.zip | |
Fixed bug #1701842, after discussing with Fingolfin.
svn-id: r26545
Diffstat (limited to 'base')
| -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); |
