From 12b4d4102fbb10ca0a10c5802a95aef8c02d7122 Mon Sep 17 00:00:00 2001 From: KIT! Date: Thu, 21 Mar 2024 17:07:06 +0100 Subject: [PATCH] Fixed tja2fumen not working with files containing spaces --- Commons/IO/TJA.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;