1
0

Fix max filename length

This commit is contained in:
otya128
2017-07-09 21:24:08 +09:00
parent 2d1ccbdbb2
commit d452caf17f

View File

@@ -67,7 +67,7 @@ r"ファイルを書き込みます。
}
static bool isValidFileName(C)(C[] filename) if(isSomeChar!(C))
{
if(filename.length > 12)
if(filename.length > 14)
{
return false;
}