Pārlūkot izejas kodu
Merge pull request #4850 from sleeptightAnsiC/fix_rcore__ChangeDirectory_TRACELOG
[rcore] fix: TRACELOG upon successfully changing directory
pull/4854/head
Ray
pirms 1 nedēļas
committed by
GitHub
vecāks
revīzija
f5c96302d5
Šim parakstam datu bāzē netika atrasta zināma atslēga
GPG atslēgas ID: B5690EEEBB952194
1 mainītis faili ar
1 papildinājumiem un
0 dzēšanām
-
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); |
|
|
|
} |
|
|
|