Browse Source

Init CORE.Window.focused

pull/1233/head
raysan5 4 years ago
parent
commit
ac8f436c3b
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      src/core.c

+ 2
- 0
src/core.c View File

@ -681,7 +681,9 @@ void InitWindow(int width, int height, const char *title)
// Init graphics device (display device and OpenGL context)
// NOTE: returns true if window and graphic device has been initialized successfully
CORE.Window.ready = InitGraphicsDevice(width, height);
if (!CORE.Window.ready) return;
else CORE.Window.focused = true;
// Init hi-res timer
InitTimer();

Loading…
Cancel
Save