1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 18:53:28 +01:00

sys_fs: Fix SDATA/EDATA file-stat

This commit is contained in:
Eladash 2021-09-21 11:46:40 +03:00 committed by Ivan
parent 5ae7dbf77c
commit 4237039d53

View File

@ -86,13 +86,9 @@ public:
fs::stat_t stat() override
{
fs::stat_t stats;
stats.is_directory = false;
stats.is_writable = false;
fs::stat_t stats = edata_file.stat();
stats.is_writable = false; // TODO
stats.size = file_size;
stats.atime = -1;
stats.ctime = -1;
stats.mtime = -1;
return stats;
}