This commit is contained in:
UnknownShadow200 2019-03-08 09:42:54 +11:00
parent 01e520ad4d
commit cc3ae79136

View File

@ -79,7 +79,7 @@ static void Program_SetCurrentDirectory(void) {
if (path.buffer[i] == '/' || path.buffer[i] == '\\') break; if (path.buffer[i] == '/' || path.buffer[i] == '\\') break;
} }
res = Platform_SetCurrentDirectory(&path); res = Platform_SetCurrentDirectory(&path);
if (res) { Logger_Warn(res, "setting current directory"); return; } if (res) { Logger_OldWarn(res, "setting current directory"); return; }
#endif #endif
} }