From 80cccd7abb57f34f2a2f7963ebbacebf64d9209c Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sat, 1 Oct 2022 16:13:25 -0700 Subject: [PATCH] Build: Fix debug build on Windows 32-bit. --- GPU/Software/TransformUnit.h | 1 + 1 file changed, 1 insertion(+) diff --git a/GPU/Software/TransformUnit.h b/GPU/Software/TransformUnit.h index b3d2e9b06d..3c022523d2 100644 --- a/GPU/Software/TransformUnit.h +++ b/GPU/Software/TransformUnit.h @@ -180,6 +180,7 @@ public: TransformUnit transformUnit; #if PPSSPP_ARCH(32BIT) +#undef new void *operator new(size_t s) { return AllocateAlignedMemory(s, 16); }