mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
f81c5f944c
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.
17 lines
369 B
C++
17 lines
369 B
C++
#include "define.h"
|
|
|
|
Isle *g_isle = 0;
|
|
int g_closed = 0;
|
|
|
|
const char *WINDOW_TITLE = "LEGO®";
|
|
|
|
unsigned char g_mousedown = 0;
|
|
unsigned char g_mousemoved = 0;
|
|
int g_rmDisabled = 0;
|
|
int _DAT_00410054 = 1;
|
|
int g_targetWidth = 640;
|
|
int g_targetHeight = 480;
|
|
unsigned int g_targetDepth = 16;
|
|
int g_reqEnableRMDevice = 0;
|
|
int g_startupDelay = 200;
|
|
long g_lastFrameTime = 0;
|