MemStick screen: Call free_disk_space from async tasks

See #19522
This commit is contained in:
Henrik Rydgård
2024-10-11 13:45:43 +02:00
parent 3f3fd5bf64
commit 8a5be21140
13 changed files with 69 additions and 30 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ public:
PSPDevType DevType(u32 handle) override;
std::vector<PSPFileInfo> GetDirListing(const std::string &path, bool *exists = nullptr) override;
FileSystemFlags Flags() override { return FileSystemFlags::UMD; }
u64 FreeSpace(const std::string &path) override { return 0; }
u64 FreeDiskSpace(const std::string &path) override { return 0; }
// unsupported operations
size_t WriteFile(u32 handle, const u8 *pointer, s64 size) override;