Changeset - r7016:4751dbaac449
[Not reviewed]
master
0 1 0
glx - 17 years ago 2007-06-22 19:30:59
glx@openttd.org
(svn r10272) -Fix (FS#916): remove more invalid characters from savegame names
1 file changed with 1 insertions and 0 deletions:
0 comments (0 inline, 0 general)
src/fileio.cpp
Show inline comments
 
@@ -532,6 +532,7 @@ void SanitizeFilename(char *filename)
 
			/* The following characters are not allowed in filenames
 
			 * on at least one of the supported operating systems: */
 
			case ':': case '\\': case '*': case '?': case '/':
 
			case '<': case '>': case '|': case '"':
 
				*filename = '_';
 
				break;
 
		}
0 comments (0 inline, 0 general)