aboutsummaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorMax Horn2003-10-12 18:46:50 +0000
committerMax Horn2003-10-12 18:46:50 +0000
commit5325ed83cf8166203ade9565805550a768786264 (patch)
tree0176f74f46d3ef908c59ff4dfa1758cf29bd0e1b /base
parent9b41c157c09487f7baee5caa3fdfaabe759d4abd (diff)
downloadscummvm-rg350-5325ed83cf8166203ade9565805550a768786264.tar.gz
scummvm-rg350-5325ed83cf8166203ade9565805550a768786264.tar.bz2
scummvm-rg350-5325ed83cf8166203ade9565805550a768786264.zip
use gScummVMFullVersion for initial window caption; use ConfigManager::kApplicationDomain instead of hard-coded 'scummvm'
svn-id: r10768
Diffstat (limited to 'base')
-rw-r--r--base/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/main.cpp b/base/main.cpp
index 6b90e531f7..2faeb873e8 100644
--- a/base/main.cpp
+++ b/base/main.cpp
@@ -234,7 +234,7 @@ int main(int argc, char *argv[]) {
#endif //defined(WIN32) && defined(USE_CONSOLE)
// Update the config file
- ConfMan.set("versioninfo", gScummVMVersion, "scummvm");
+ ConfMan.set("versioninfo", gScummVMVersion, Common::ConfigManager::kApplicationDomain);
// Load the plugins
PluginManager::instance().loadPlugins();
@@ -252,7 +252,7 @@ int main(int argc, char *argv[]) {
g_timer = new Timer(system);
// Set initial window caption
- prop.caption = "ScummVM";
+ prop.caption = gScummVMFullVersion;
system->property(OSystem::PROP_SET_WINDOW_CAPTION, &prop);
// Create the GUI manager