From 939391b16c4667efbe97a0c280b69edc64c990c6 Mon Sep 17 00:00:00 2001 From: Lyelye150 Date: Sun, 19 Oct 2025 11:33:36 -0400 Subject: [PATCH] Update isleapp.cpp (added errlua/error screen) --- ISLE/isleapp.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ISLE/isleapp.cpp b/ISLE/isleapp.cpp index 76a92d5d..2859526b 100644 --- a/ISLE/isleapp.cpp +++ b/ISLE/isleapp.cpp @@ -67,6 +67,9 @@ #ifdef __WIIU__ #include "wiiu/config.h" +#ifdef __WUT__ +#include +#endif #endif #ifdef WINDOWS_STORE @@ -82,7 +85,8 @@ #endif DECOMP_SIZE_ASSERT(IsleApp, 0x8c) - +NOT THERE +Do a few things: NOT THERE // GLOBAL: ISLE 0x410030 IsleApp* g_isle = NULL; @@ -299,6 +303,8 @@ void IsleApp::SetupVideoFlags( #ifdef __WUT__ int main(int argc, char** argv) { + errluaInit(); // added wiiu errlua + errluaSetScreenEnabled(true); void* appstate = NULL; return SDL_AppInit(&appstate, argc, argv); }