From 8e9c3ceb579079b8b0b2291adcf29b7d661c3b99 Mon Sep 17 00:00:00 2001 From: sleeptightAnsiC <91839286+sleeptightAnsiC@users.noreply.github.com> Date: Sat, 22 Mar 2025 21:20:17 +0100 Subject: [PATCH] [rcore] fix: TRACELOG upon successfully changing directory InitWindow() prints CWD during initialization, but ChangeDirectory() does not, which is quite confusing when you start messing with CWD. Now said function should log similar message. --- src/rcore.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rcore.c b/src/rcore.c index 864c54b0f..4ccae395f 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -2354,6 +2354,7 @@ bool ChangeDirectory(const char *dir) bool result = CHDIR(dir); if (result != 0) TRACELOG(LOG_WARNING, "SYSTEM: Failed to change to directory: %s", dir); + else TRACELOG(LOG_INFO, "SYSTEM: Working Directory: %s", dir); return (result == 0); }