filesystem: android: use commit date as android assets file time

This commit is contained in:
Alibek Omarov
2025-08-04 10:23:14 +05:00
parent ac22de84bf
commit 81c7ef20eb

View File

@@ -138,7 +138,7 @@ static int FS_FileTime_AndroidAssets( searchpath_t *search, const char *filename
{
struct tm file_tm;
strptime( __DATE__ " "__TIME__, "%b %d %Y %H:%M:%S", &file_tm );
strptime( g_buildcommit_date, "%Y-%m-%d %H:%M:%S", &file_tm );
time = mktime( &file_tm );
}