From 87c61f8cd054fe7ff74a4758f73518f0dbc585f8 Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Mon, 12 Jun 2023 11:51:13 -0700 Subject: [PATCH] fixed symbol character regression MSVC420 doesn't support UTF-8, so the (R) symbol must be in Windows-1252 encoding instead. A PR seems to have reverted this back to UTF-8 (a code editor probably did this without even mentioning it) --- ISLE/define.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ISLE/define.cpp b/ISLE/define.cpp index 7f574a8c..96846c63 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®"; unsigned char g_mousedown = 0; unsigned char g_mousemoved = 0;