mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-01-31 01:25:18 +01:00
Fix typo
This commit is contained in:
@@ -24,7 +24,7 @@ namespace rsx
|
||||
template <size_t Align>
|
||||
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);
|
||||
|
||||
Reference in New Issue
Block a user