From a3f7c0d67f7b2aee900201952793fabd15d17903 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Fri, 21 Nov 2025 03:27:28 +0300 Subject: [PATCH] Fix typo --- rpcs3/Emu/RSX/Common/simple_array.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/Common/simple_array.hpp b/rpcs3/Emu/RSX/Common/simple_array.hpp index bd90fa9dcb..4b5ceac877 100644 --- a/rpcs3/Emu/RSX/Common/simple_array.hpp +++ b/rpcs3/Emu/RSX/Common/simple_array.hpp @@ -24,7 +24,7 @@ namespace rsx template void* realloc(void* prev_ptr, [[maybe_unused]] size_t prev_size, size_t new_size) { -#ifdef _WIn32 +#ifdef _WIN32 return _aligned_realloc(prev_ptr, new_size, Align); #else void* ret = std::aligned_alloc(Align, new_size);