diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Applets/Browser/WebCommonReturnValue.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Applets/Browser/WebCommonReturnValue.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Ryujinx.HLE/HOS/Applets/Browser/WebCommonReturnValue.cs b/Ryujinx.HLE/HOS/Applets/Browser/WebCommonReturnValue.cs index aab7a86b..9f7eae70 100644 --- a/Ryujinx.HLE/HOS/Applets/Browser/WebCommonReturnValue.cs +++ b/Ryujinx.HLE/HOS/Applets/Browser/WebCommonReturnValue.cs @@ -1,10 +1,12 @@ -namespace Ryujinx.HLE.HOS.Applets.Browser +using Ryujinx.Common.Memory; + +namespace Ryujinx.HLE.HOS.Applets.Browser { - public unsafe struct WebCommonReturnValue + public struct WebCommonReturnValue { public WebExitReason ExitReason; public uint Padding; - public fixed byte LastUrl[0x1000]; + public ByteArray4096 LastUrl; public ulong LastUrlSize; } } |
