Merge pull request #998 from gamous/patch-1

This commit is contained in:
goat 2022-09-11 18:08:19 +02:00 committed by GitHub
commit 5aaf2058d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -364,7 +364,7 @@ namespace Dalamud.Memory
/// <param name="memoryAddress">The memory address to read from.</param>
/// <param name="item">The item to write to the address.</param>
public static void Write<T>(IntPtr memoryAddress, T item) where T : unmanaged
=> Write(memoryAddress, item);
=> Write(memoryAddress, item, false);
/// <summary>
/// Writes a generic type to a specified memory address.