diff --git a/Commons/IO/TJA.cs b/Commons/IO/TJA.cs index 7bb1c02..5157b9f 100644 --- a/Commons/IO/TJA.cs +++ b/Commons/IO/TJA.cs @@ -446,7 +446,7 @@ namespace TaikoSoundEditor.Commons.IO var p = new Process(); p.StartInfo.FileName = Path.GetFullPath(@"Tools\tja2fumen.exe"); - p.StartInfo.Arguments = sourcePath; + p.StartInfo.Arguments = "\"" + sourcePath + "\""; p.StartInfo.UseShellExecute = false; p.StartInfo.RedirectStandardError = true; p.StartInfo.RedirectStandardOutput = true;