From f91779b47a2d7cd12fee85f51400b7ad6d527691 Mon Sep 17 00:00:00 2001 From: Thomas May Date: Tue, 13 Jun 2023 16:59:03 +0100 Subject: [PATCH] =?UTF-8?q?isle:=20replace=20other=20instances=20of=20?= =?UTF-8?q?=C2=AE=EF=B8=8F=20with=20\xAE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ISLE/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ISLE/main.cpp b/ISLE/main.cpp index a0cd95b1..9ef4466e 100644 --- a/ISLE/main.cpp +++ b/ISLE/main.cpp @@ -48,7 +48,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine // Throw error if sound unavailable if (!soundReady) { - MessageBoxA(NULL, "\"LEGOŽ Island\" is not detecting a DirectSound compatible sound card. Please quit all other applications and try again.", + MessageBoxA(NULL, "\"LEGO\xAE Island\" is not detecting a DirectSound compatible sound card. Please quit all other applications and try again.", "Lego Island Error",0); return 0; } @@ -58,7 +58,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine // Create window if (g_isle->setupWindow(hInstance) != SUCCESS) { - MessageBoxA(NULL, "\"LEGOŽ Island\" failed to start. Please quit all other applications and try again.", "LEGOŽ Island Error",0); + MessageBoxA(NULL, "\"LEGO\xAE Island\" failed to start. Please quit all other applications and try again.", "LEGO\xAE Island Error",0); return 0; }