mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-16 07:30:32 +00:00
Fix alignment
This commit is contained in:
parent
2502a9d00f
commit
677583fd7f
2 changed files with 6 additions and 6 deletions
|
@ -4,9 +4,9 @@ namespace Ryujinx.HLE.HOS.Applets.Browser
|
|||
{
|
||||
public struct WebCommonReturnValue
|
||||
{
|
||||
public WebExitReason ExitReason;
|
||||
public uint Padding;
|
||||
public WebExitReason ExitReason;
|
||||
public uint Padding;
|
||||
public Array4096<byte> LastUrl;
|
||||
public ulong LastUrlSize;
|
||||
public ulong LastUrlSize;
|
||||
}
|
||||
}
|
|
@ -6,9 +6,9 @@ namespace Ryujinx.HLE.HOS.Applets.Error
|
|||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
struct ApplicationErrorArg
|
||||
{
|
||||
public uint ErrorNumber;
|
||||
public ulong LanguageCode;
|
||||
public uint ErrorNumber;
|
||||
public ulong LanguageCode;
|
||||
public Array2048<byte> MessageText;
|
||||
public Array2048<byte> DetailsText;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue