filesystem: VFileSystem009: HL25 compatibility (one single new method)

This commit is contained in:
Alibek Omarov
2023-11-20 01:46:13 +03:00
parent 2d41c9cb15
commit 1d1a6badb5
2 changed files with 10 additions and 2 deletions

View File

@@ -233,6 +233,13 @@ public:
return FS_FileTime( p, false );
}
long int GetFileModificationTime( const char *path )
{
// TODO: properly reverse-engineer this
FixupPath( p, path );
return FS_FileTime( p, false );
}
void FileTimeToString( char *p, int size, long int time ) override
{
const time_t curtime = time;