Qt: Add file size stats to NAND Check.

This commit is contained in:
Admiral H. Curtiss
2023-07-14 05:10:18 +02:00
parent efae5827f2
commit cd5aebe5ac
3 changed files with 70 additions and 1 deletions

View File

@ -101,6 +101,10 @@ struct NANDCheckResult
{
bool bad = false;
std::unordered_set<u64> titles_to_remove;
u64 used_clusters_user = 0;
u64 used_clusters_system = 0;
u64 used_inodes_user = 0;
u64 used_inodes_system = 0;
};
NANDCheckResult CheckNAND(IOS::HLE::Kernel& ios);
bool RepairNAND(IOS::HLE::Kernel& ios);