mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 07:39:45 -06:00
Qt: Add file size stats to NAND Check.
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user