diff options
| author | Alex Barney <thealexbarney@gmail.com> | 2022-02-26 16:52:25 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-27 00:52:25 +0100 |
| commit | 3705c206688c69d3348f5cec84dc480d8d7c578e (patch) | |
| tree | 6e0efab92727d3712ee27c83be3bdd6df7a97de3 /Ryujinx.HLE/Loaders/Executables | |
| parent | 7b35ebc64a411e95e197bb36ad4b55c522c3703d (diff) | |
Update LibHac to v0.16.0 (#3159)
Diffstat (limited to 'Ryujinx.HLE/Loaders/Executables')
| -rw-r--r-- | Ryujinx.HLE/Loaders/Executables/NsoExecutable.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Ryujinx.HLE/Loaders/Executables/NsoExecutable.cs b/Ryujinx.HLE/Loaders/Executables/NsoExecutable.cs index f983536c..d3c0d1bf 100644 --- a/Ryujinx.HLE/Loaders/Executables/NsoExecutable.cs +++ b/Ryujinx.HLE/Loaders/Executables/NsoExecutable.cs @@ -1,4 +1,4 @@ -using LibHac.Common; +using LibHac.Common.FixedArrays; using LibHac.Fs; using LibHac.Loader; using LibHac.Tools.FsSystem; @@ -26,8 +26,8 @@ namespace Ryujinx.HLE.Loaders.Executables public uint DataSize { get; } public uint BssSize { get; } - public string Name; - public Buffer32 BuildId; + public string Name; + public Array32<byte> BuildId; public NsoExecutable(IStorage inStorage, string name = null) { |
