mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-06 03:18:14 +00:00
Fix android
, drm
compilation issue on InitWindow
(#3407)
* Fix drm compilation issue on InitWindow * Fix android compilation issue on InitWindow
This commit is contained in:
@@ -231,9 +231,9 @@ void InitWindow(int width, int height, const char *title)
|
|||||||
|
|
||||||
// Set some default window flags
|
// Set some default window flags
|
||||||
CORE.Window.flags &= ~FLAG_WINDOW_HIDDEN; // false
|
CORE.Window.flags &= ~FLAG_WINDOW_HIDDEN; // false
|
||||||
CORE.Window.flags &= ~FLAG_WINDOW_MINIMIZED); // false
|
CORE.Window.flags &= ~FLAG_WINDOW_MINIMIZED; // false
|
||||||
CORE.Window.flags |= FLAG_WINDOW_MAXIMIZED); // true
|
CORE.Window.flags |= FLAG_WINDOW_MAXIMIZED; // true
|
||||||
CORE.Window.flags &= ~FLAG_WINDOW_UNFOCUSED); // false
|
CORE.Window.flags &= ~FLAG_WINDOW_UNFOCUSED; // false
|
||||||
|
|
||||||
TRACELOG(LOG_INFO, "PLATFORM: ANDROID: Application initialized successfully");
|
TRACELOG(LOG_INFO, "PLATFORM: ANDROID: Application initialized successfully");
|
||||||
|
|
||||||
|
@@ -228,9 +228,9 @@ void InitWindow(int width, int height, const char *title)
|
|||||||
|
|
||||||
// Set some default window flags
|
// Set some default window flags
|
||||||
CORE.Window.flags &= ~FLAG_WINDOW_HIDDEN; // false
|
CORE.Window.flags &= ~FLAG_WINDOW_HIDDEN; // false
|
||||||
CORE.Window.flags &= ~FLAG_WINDOW_MINIMIZED); // false
|
CORE.Window.flags &= ~FLAG_WINDOW_MINIMIZED; // false
|
||||||
CORE.Window.flags |= FLAG_WINDOW_MAXIMIZED); // true
|
CORE.Window.flags |= FLAG_WINDOW_MAXIMIZED; // true
|
||||||
CORE.Window.flags &= ~FLAG_WINDOW_UNFOCUSED); // false
|
CORE.Window.flags &= ~FLAG_WINDOW_UNFOCUSED; // false
|
||||||
|
|
||||||
// Initialize hi-res timer
|
// Initialize hi-res timer
|
||||||
InitTimer();
|
InitTimer();
|
||||||
|
Reference in New Issue
Block a user