From 03aac1a3fdb720001b77610d0f5bb67d3a501cc8 Mon Sep 17 00:00:00 2001 From: sSAR <138690654+zUltimaPG3D@users.noreply.github.com> Date: Mon, 21 Apr 2025 18:00:37 +0200 Subject: [PATCH] chore: implement kernel32::RtlMoveMemory --- mkxp-z/Kawariki-patches/libs/Win32API.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mkxp-z/Kawariki-patches/libs/Win32API.rb b/mkxp-z/Kawariki-patches/libs/Win32API.rb index 358c152..f0f267d 100644 --- a/mkxp-z/Kawariki-patches/libs/Win32API.rb +++ b/mkxp-z/Kawariki-patches/libs/Win32API.rb @@ -285,7 +285,9 @@ module Win32API end - + RtlMoveMemory = ->(dest, src, length) do + dest[0, length] = src[0, length] + end