mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 07:28:00 -05:00
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)
This commit is contained in:
parent
d4f25fcd23
commit
87c61f8cd0
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue