mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 09:08:38 +00:00
Fix struct layout packing (#4039)
This commit is contained in:
parent
752b93d3b7
commit
bf7fa60dfc
|
@ -8,7 +8,7 @@ namespace Ryujinx.Common.Memory.PartialUnmaps
|
|||
/// <summary>
|
||||
/// A simple implementation of a ReaderWriterLock which can be used from native code.
|
||||
/// </summary>
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 4)]
|
||||
public struct NativeReaderWriterLock
|
||||
{
|
||||
public int WriteLock;
|
||||
|
|
Loading…
Reference in a new issue