Revert "Isolate JKRHeap operator overloads" (#39)

This commit is contained in:
TakaRikka
2026-03-06 19:49:35 -08:00
committed by GitHub
parent b7c482fb87
commit 78d4169929
630 changed files with 3349 additions and 3452 deletions
+2 -4
View File
@@ -6,8 +6,6 @@
#include <gx.h>
#include <vi.h>
#include "JSystem/JKernel/JKRHeap.h"
JUTVideo* JUTVideo::sManager;
OSTick JUTVideo::sVideoLastTick;
@@ -18,14 +16,14 @@ static bool data_80451544;
JUTVideo* JUTVideo::createManager(GXRenderModeObj const* param_0) {
if (sManager == NULL) {
sManager = JKR_NEW JUTVideo(param_0);
sManager = new JUTVideo(param_0);
}
return sManager;
}
void JUTVideo::destroyManager() {
if (sManager != NULL) {
JKR_DELETE(sManager);
delete sManager;
sManager = NULL;
}
}