filesystem: add new export to get fs_rootdir path

This commit is contained in:
Alibek Omarov
2024-11-30 09:27:12 +03:00
parent df4194ca57
commit 4798cd6d1e
4 changed files with 25 additions and 3 deletions

View File

@@ -435,9 +435,7 @@ public:
bool GetCurrentDirectory( char *p, int size ) override
{
Q_strncpy( p, fs_rootdir, size );
return true;
return FS_GetRootDirectory( p, size );
}
void PrintOpenedFiles() override