mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 09:31:45 +00:00
Fix ShaderTools
This commit is contained in:
parent
92703af555
commit
23d8516763
1 changed files with 2 additions and 2 deletions
|
@ -18,9 +18,9 @@ namespace Ryujinx.ShaderTools
|
||||||
flags |= TranslationFlags.Compute;
|
flags |= TranslationFlags.Compute;
|
||||||
}
|
}
|
||||||
|
|
||||||
byte[] data = File.ReadAllBytes(args[args.Length - 1]);
|
byte[] data = File.ReadAllBytes(args[^1]);
|
||||||
|
|
||||||
string code = Translator.Translate(data, null, flags).Code;
|
string code = Translator.Translate(data, new TranslatorCallbacks(null, null), flags).Code;
|
||||||
|
|
||||||
Console.WriteLine(code);
|
Console.WriteLine(code);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue