From 10d3e63ee2d321449e898124f30b6e355b90f776 Mon Sep 17 00:00:00 2001 From: PJB3005 Date: Wed, 25 Feb 2026 22:47:31 +0100 Subject: [PATCH] Re-enable fader logic Was disabled during port development, needed to load the game --- src/JSystem/JFramework/JFWDisplay.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/JSystem/JFramework/JFWDisplay.cpp b/src/JSystem/JFramework/JFWDisplay.cpp index 41f53b1a01..652474d15d 100644 --- a/src/JSystem/JFramework/JFWDisplay.cpp +++ b/src/JSystem/JFramework/JFWDisplay.cpp @@ -200,10 +200,10 @@ void JFWDisplay::endGX() { J2DOrthoGraph ortho(0.0f, 0.0f, width, height, -1.0f, 1.0f); - //if (mFader != NULL) { - // ortho.setPort(); - // mFader->control(); - //} + if (mFader != NULL) { + ortho.setPort(); + mFader->control(); + } ortho.setPort(); JUTDbPrint::getManager()->flush();