mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
isle: Matched WNDCLASS_NAME to Original
In 1.0 WINDOW_TITLE seems to be a define like WNDCLASS_NAME. However, in 1.1 it is a const char* like in the already existing code. It also has a value of "Lego Island" in 1.0 but a value of "Lego®" in 1.1.
This commit is contained in:
@@ -3,8 +3,7 @@
|
||||
Isle *g_isle = 0;
|
||||
int g_closed = 0;
|
||||
|
||||
const char *WNDCLASS_NAME = "Lego Island MainNoM App";
|
||||
const char *WINDOW_TITLE = "LEGO<EFBFBD>";
|
||||
const char *WINDOW_TITLE = "LEGO®";
|
||||
|
||||
unsigned char g_mousedown = 0;
|
||||
unsigned char g_mousemoved = 0;
|
||||
|
@@ -5,7 +5,7 @@ class Isle;
|
||||
|
||||
extern Isle *g_isle;
|
||||
extern int g_closed;
|
||||
extern const char *WNDCLASS_NAME;
|
||||
#define WNDCLASS_NAME "Lego Island MainNoM App"
|
||||
extern const char *WINDOW_TITLE;
|
||||
extern unsigned char g_mousedown;
|
||||
extern unsigned char g_mousemoved;
|
||||
|
Reference in New Issue
Block a user