From e8a1715dfda1bf1712ae2851cb8a7b60d41ae64e Mon Sep 17 00:00:00 2001 From: Cekis Date: Wed, 13 Oct 2021 04:49:32 -0400 Subject: [PATCH] Fixed bug with Miff, TPF and TAB tools not working. --- engine/shared/library/sharedFoundation/src/shared/Misc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/shared/library/sharedFoundation/src/shared/Misc.h b/engine/shared/library/sharedFoundation/src/shared/Misc.h index 4cbcd9dc..d0e70c94 100755 --- a/engine/shared/library/sharedFoundation/src/shared/Misc.h +++ b/engine/shared/library/sharedFoundation/src/shared/Misc.h @@ -226,11 +226,11 @@ inline void imemcpy(void *destination, const void *source, int length) * @param length Number of bytes to copy */ -inline void *memmove(void *destination, const void *source, int32_t length) +inline void *memmove(void *destination, const void *source, int length) { DEBUG_FATAL(!destination, ("nullptr destination arg")); DEBUG_FATAL(!source, ("nullptr source arg")); - return memmove(destination, source, static_cast(length)); + return memmove(destination, source, static_cast(length)); } // ----------------------------------------------------------------------