aboutsummaryrefslogtreecommitdiff
path: root/common/config-manager.cpp
diff options
context:
space:
mode:
authorTravis Howell2006-07-10 11:12:11 +0000
committerTravis Howell2006-07-10 11:12:11 +0000
commit175c951e8ea2977810c946045dc15252a6f2c49e (patch)
tree0def0f309d784ca4657a283c5848b5e2cd0f67fe /common/config-manager.cpp
parent924ff9169b7003da7965fa2538d593372e6035a0 (diff)
downloadscummvm-rg350-175c951e8ea2977810c946045dc15252a6f2c49e.tar.gz
scummvm-rg350-175c951e8ea2977810c946045dc15252a6f2c49e.tar.bz2
scummvm-rg350-175c951e8ea2977810c946045dc15252a6f2c49e.zip
Add cyx's patch for #1497725 - GUI: trying to enter empty CD drive
svn-id: r23475
Diffstat (limited to 'common/config-manager.cpp')
-rw-r--r--common/config-manager.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/common/config-manager.cpp b/common/config-manager.cpp
index 7651f58ee2..1f79c22c07 100644
--- a/common/config-manager.cpp
+++ b/common/config-manager.cpp
@@ -124,8 +124,15 @@ void ConfigManager::loadDefaultConfigFile() {
char oldConfigFile[MAXPATHLEN];
GetWindowsDirectory(oldConfigFile, MAXPATHLEN);
strcat(oldConfigFile, "\\" DEFAULT_CONFIG_FILE);
- if (fopen(oldConfigFile, "r"))
+ if (fopen(oldConfigFile, "r")) {
+ printf("The default location of the config file (scummvm.ini) in ScummVM has changed,\n");
+ printf("under Windows NT4/2000/XP/Vista. You may want to consider moving your config\n");
+ printf("file from the old default location:\n");
+ printf("%s\n", oldConfigFile);
+ printf("to the new default location:\n");
+ printf("%s\n\n", configFile);
strcpy(configFile, oldConfigFile);
+ }
}
} else {
// Check windows directory