From 498e884daf37c3829b804fd32fe003235b5d6736 Mon Sep 17 00:00:00 2001 From: sleeptightAnsiC <91839286+sleeptightAnsiC@users.noreply.github.com> Date: Sun, 2 Mar 2025 16:54:24 +0100 Subject: [PATCH] [rcore] use LOG_WARNING when InitPlatform() fails ...as this is preferred over LOG_ERROR. Requested-by: https://github.com/raysan5/raylib/pull/4803#discussion_r1976651724 --- src/rcore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rcore.c b/src/rcore.c index 049da7d32..cc4d4988d 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -685,7 +685,7 @@ void InitWindow(int width, int height, const char *title) if (result != 0) { - TRACELOG(LOG_ERROR, "SYSTEM: Failed to initialize Platform"); + TRACELOG(LOG_WARNING, "SYSTEM: Failed to initialize Platform"); return; } //--------------------------------------------------------------