From 1cdef224c24e9b7444f992dc9ec56f612a8d43e6 Mon Sep 17 00:00:00 2001 From: Mauller <26652186+Mauller@users.noreply.github.com> Date: Sun, 9 Nov 2025 17:40:49 +0000 Subject: [PATCH] fix(memory): Add missing REF macros to always.h for null memory manager --- Core/Libraries/Source/WWVegas/WWLib/always.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Core/Libraries/Source/WWVegas/WWLib/always.h b/Core/Libraries/Source/WWVegas/WWLib/always.h index 211c0bedab..d63eeec2fb 100644 --- a/Core/Libraries/Source/WWVegas/WWLib/always.h +++ b/Core/Libraries/Source/WWVegas/WWLib/always.h @@ -175,6 +175,9 @@ class W3DMPO #define W3DNEW new #define W3DNEWARRAY new + #define NEW_REF( C, P ) ( W3DNEW C P ) + #define SET_REF_OWNER( P ) P + #define W3DMPO_GLUE(ARGCLASS) class W3DMPO { };