Merge pull request #2833 from jriwanek-forks/fix

Fix silly mistake
This commit is contained in:
Jasmine Iwanek
2022-11-08 13:56:56 -05:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -104,7 +104,7 @@ extern "C" {
extern HINSTANCE hinstance;
extern HWND hwndMain,
hwndRender;
hwndRender,
hwndRender2;
extern HANDLE ghMutex;
extern HICON hIcon[256];

View File

@@ -54,7 +54,7 @@
/* Platform Public data, specific. */
HWND hwndMain = NULL, /* application main window */
hwndRender = NULL; /* machine render window */
hwndRender = NULL, /* machine render window */
hwndRender2 = NULL; /* machine second screen render window */
HMENU menuMain; /* application main menu */
RECT oldclip; /* mouse rect */