diff --git a/Ryujinx.CustomTasks/GenerateArrays.cs b/Ryujinx.CustomTasks/GenerateArrays.cs index 440f284..924a509 100644 --- a/Ryujinx.CustomTasks/GenerateArrays.cs +++ b/Ryujinx.CustomTasks/GenerateArrays.cs @@ -182,6 +182,11 @@ namespace Ryujinx.CustomTasks string arraysFilePath = Path.Combine(OutputPath, ArraysFileName); List arraySizes = new List(); + if (!Directory.Exists(OutputPath)) + { + Directory.CreateDirectory(OutputPath); + } + foreach (var item in InputFiles) { string fullPath = item.GetMetadata("FullPath");