(svn r10272) -Fix (FS#916): remove more invalid characters from savegame names

pull/155/head
glx 17 years ago
parent 28a006ec1f
commit ad41b2dbd4

@ -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;
}

Loading…
Cancel
Save