aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/sdl
diff options
context:
space:
mode:
authorTravis Howell2008-08-22 13:01:23 +0000
committerTravis Howell2008-08-22 13:01:23 +0000
commitdded0de6c245de3e80dfb4051a9828dd3ad9620e (patch)
treed58fab18e847509ff9d35c493849796a9f3062f1 /backends/platform/sdl
parentd9d77fef03bef824f5ec9f2396ac41586249b9da (diff)
downloadscummvm-rg350-dded0de6c245de3e80dfb4051a9828dd3ad9620e.tar.gz
scummvm-rg350-dded0de6c245de3e80dfb4051a9828dd3ad9620e.tar.bz2
scummvm-rg350-dded0de6c245de3e80dfb4051a9828dd3ad9620e.zip
Remove warning about change of config file location under Windows, since it is frequently repeated (due to code restructures). The information is mentioned in the README anyway.
svn-id: r34104
Diffstat (limited to 'backends/platform/sdl')
-rw-r--r--backends/platform/sdl/sdl.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/backends/platform/sdl/sdl.cpp b/backends/platform/sdl/sdl.cpp
index fa0ea35cb5..1ed76f4be6 100644
--- a/backends/platform/sdl/sdl.cpp
+++ b/backends/platform/sdl/sdl.cpp
@@ -304,12 +304,6 @@ static Common::String getDefaultConfigFileName() {
GetWindowsDirectory(oldConfigFile, MAXPATHLEN);
strcat(oldConfigFile, "\\" DEFAULT_CONFIG_FILE);
if ((tmp = 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);
fclose(tmp);