From 81c7ef20eb3bdd12a6d60c7ea4dee6562df40ead Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Mon, 4 Aug 2025 10:23:14 +0500 Subject: [PATCH] filesystem: android: use commit date as android assets file time --- filesystem/android.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filesystem/android.c b/filesystem/android.c index 9ed28956..f00b00d5 100644 --- a/filesystem/android.c +++ b/filesystem/android.c @@ -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 ); }