diff --git a/Ryujinx.HLE/DeviceMemory.cs b/Ryujinx.HLE/DeviceMemory.cs index 35f8535766..3553a6e713 100644 --- a/Ryujinx.HLE/DeviceMemory.cs +++ b/Ryujinx.HLE/DeviceMemory.cs @@ -99,7 +99,7 @@ namespace Ryujinx.HLE *((ulong*)(_ramPtr + position)) = value; } - public unsafe void WriteStructure(long position, T value) + public unsafe void WriteStruct(long position, T value) { Marshal.StructureToPtr(value, (IntPtr)(_ramPtr + position), false); } @@ -186,4 +186,4 @@ namespace Ryujinx.HLE MemoryManagement.Free(RamPointer); } } -} \ No newline at end of file +}