From 43ea7786b9e28b3d2d77e1fff4c5f575dc488d91 Mon Sep 17 00:00:00 2001 From: Lurs <2795933+Lurs@users.noreply.github.com> Date: Sun, 22 Feb 2026 07:31:22 +0100 Subject: [PATCH] stubbed unresolved symbols again after updating aurora --- src/JSystem/JFramework/JFWDisplay.cpp | 4 +--- src/dusk/stubs.cpp | 18 +++++++++--------- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/src/JSystem/JFramework/JFWDisplay.cpp b/src/JSystem/JFramework/JFWDisplay.cpp index c47974710b..713e629f7d 100644 --- a/src/JSystem/JFramework/JFWDisplay.cpp +++ b/src/JSystem/JFramework/JFWDisplay.cpp @@ -428,11 +428,9 @@ void JFWDisplay::clearEfb(GXColor color) { void JFWDisplay::clearEfb(int param_0, int param_1, int param_2, int param_3, GXColor color) { // --- FORCE PINK DEBUG --- - // Das Spiel übergibt hier "Schwarz". Wir ignorieren das und erzwingen Pink. - // So sehen wir sofort, ob dieser Code ausgeführt wird. GXColor debugPink = {255, 0, 128, 255}; - // Setze Pink als Clear-Farbe und Z auf Max + // Set pink as Clear-Farbe and Z to max GXSetCopyClear(debugPink, 0x00FFFFFF); // Viewport Safety diff --git a/src/dusk/stubs.cpp b/src/dusk/stubs.cpp index a722092eaf..2cf4e4f671 100644 --- a/src/dusk/stubs.cpp +++ b/src/dusk/stubs.cpp @@ -1658,12 +1658,12 @@ void GXReadXfRasMetric(u32* xf_wait_in, u32* xf_wait_out, u32* ras_busy, u32* cl *ras_busy = 0; *clocks = 0; } -//void GXSetClipMode(GXClipMode mode) { -// puts("GXSetClipMode is a stub"); -//} -//void GXSetCoPlanar(GXBool enable) { -// puts("GXSetCoPlanar is a stub"); -//} +void GXSetClipMode(GXClipMode mode) { + puts("GXSetClipMode is a stub"); +} +void GXSetCoPlanar(GXBool enable) { + puts("GXSetCoPlanar is a stub"); +} void GXSetCopyClamp(GXFBClamp clamp) { puts("GXSetCopyClamp is a stub"); } @@ -1680,9 +1680,9 @@ void GXSetMisc(GXMiscToken token, u32 val) { void GXSetPointSize(u8 pointSize, GXTexOffset texOffsets) { puts("GXSetPointSize is a stub"); } -//void GXSetProjectionv(const f32* ptr) { -// puts("GXSetProjectionv is a stub"); -//} +void GXSetProjectionv(const f32* ptr) { + puts("GXSetProjectionv is a stub"); +} void GXSetVtxAttrFmtv(GXVtxFmt vtxfmt, const GXVtxAttrFmtList* list) { puts("GXSetVtxAttrFmtv is a stub"); }