From 88ed7eed7db6e89d0f25b504fe776ddda7d5ff88 Mon Sep 17 00:00:00 2001 From: AllMeatball <181806857+AllMeatball@users.noreply.github.com> Date: Fri, 16 May 2025 15:02:27 -0500 Subject: [PATCH] isleapp: Add missing error dialog when ISLE.si fails --- ISLE/isleapp.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ISLE/isleapp.cpp b/ISLE/isleapp.cpp index c76f803c..32102599 100644 --- a/ISLE/isleapp.cpp +++ b/ISLE/isleapp.cpp @@ -784,6 +784,13 @@ inline bool IsleApp::Tick() NULL ); SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Failed to open ISLE.si: Failed to start initial action"); + SDL_ShowSimpleMessageBox( + SDL_MESSAGEBOX_ERROR, + "LEGO® Island Error", + "\"LEGO® Island\" failed to start.\nPlease quit all other applications and try again." + "\nFailed to load ISLE.si", + NULL + ); return false; } m_gameStarted = TRUE;