浏览代码

Merge pull request #4850 from sleeptightAnsiC/fix_rcore__ChangeDirectory_TRACELOG

[rcore] fix: TRACELOG upon successfully changing directory
pull/4854/head
Ray 1周前
committed by GitHub
父节点
当前提交
f5c96302d5
找不到此签名对应的密钥 GPG 密钥 ID: B5690EEEBB952194
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. +1
    -0
      src/rcore.c

+ 1
- 0
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);
}

正在加载...
取消
保存