From 06c09a25bcf21e44b026a66ba1bf794091cfc155 Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Mon, 12 Jun 2023 18:42:44 -0700 Subject: [PATCH] use escape sequence in title string to prevent further unicode issues --- ISLE/define.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ISLE/define.cpp b/ISLE/define.cpp index 96846c63..f4f08100 100644 --- a/ISLE/define.cpp +++ b/ISLE/define.cpp @@ -3,7 +3,7 @@ Isle *g_isle = 0; int g_closed = 0; -const char *WINDOW_TITLE = "LEGOŽ"; +const char *WINDOW_TITLE = "LEGO\xAE"; unsigned char g_mousedown = 0; unsigned char g_mousemoved = 0;