1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 05:23:04 +01:00

Merge pull request #2616 from atmaxinger/autosave-timestamp

Append timestamp to autosave
This commit is contained in:
Ted John
2016-01-04 17:54:11 +00:00
2 changed files with 89 additions and 3 deletions

View File

@@ -500,8 +500,8 @@ bool platform_file_move(const utf8 *srcPath, const utf8 *dstPath)
bool platform_file_delete(const utf8 *path)
{
STUB();
return 0;
int ret = unlink(path);
return ret == 0;
}
wchar_t *regular_to_wchar(const char* src)