From fde0dcd0abf8ec2f72872929886b55be95031900 Mon Sep 17 00:00:00 2001 From: Ray Date: Sun, 21 Jul 2024 10:28:23 +0200 Subject: [PATCH] ADDED: Working directory info at initialization --- src/rcore.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/rcore.c b/src/rcore.c index c324ce2ac..fb71da0f6 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -683,6 +683,8 @@ void InitWindow(int width, int height, const char *title) // Initialize random seed SetRandomSeed((unsigned int)time(NULL)); + + TRACELOG(LOG_INFO, "SYSTEM: Working Directory: %s", GetWorkingDirectory()); } // Close window and unload OpenGL context