summaryrefslogtreecommitdiff
path: root/src/screenshot.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-06-12 15:46:34 +0000
committerrubidium <rubidium@openttd.org>2007-06-12 15:46:34 +0000
commit60d738f23ae2ad657e84b9d5d995822072012e03 (patch)
tree807df3145b0384aac9a4c04c5103b8164bf210cd /src/screenshot.cpp
parent443db4bb2e446268d1b2caad05026ffebb4a49a5 (diff)
downloadopenttd-60d738f23ae2ad657e84b9d5d995822072012e03.tar.xz
(svn r10116) -Fix [FS#850]: remove invalid characters (for the file system) from savegame names. Based on a patch by TheJosh.
Diffstat (limited to 'src/screenshot.cpp')
-rw-r--r--src/screenshot.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/screenshot.cpp b/src/screenshot.cpp
index 5948f29d3..738f28a68 100644
--- a/src/screenshot.cpp
+++ b/src/screenshot.cpp
@@ -14,6 +14,7 @@
#include "variables.h"
#include "date.h"
#include "helpers.hpp"
+#include "fileio.h"
char _screenshot_format_name[8];
uint _num_screenshot_formats;
@@ -505,6 +506,7 @@ static char *MakeScreenshotName(const char *ext)
GetString(_screenshot_name, STR_4004, lastof(_screenshot_name));
}
+ SanitizeFilename(_screenshot_name);
base = strchr(_screenshot_name, 0);
base[0] = '.'; strcpy(base + 1, ext);