mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-28 14:02:38 +00:00
DiscIO: Remove redundant qualifiers
This commit is contained in:
parent
bc3c3eb79a
commit
ecafd8058f
9 changed files with 45 additions and 53 deletions
|
@ -125,7 +125,7 @@ bool DiscScrubber::ParseDisc(const Volume& disc)
|
|||
// Mark the header as used - it's mostly 0s anyways
|
||||
MarkAsUsed(0, 0x50000);
|
||||
|
||||
for (const DiscIO::Partition& partition : disc.GetPartitions())
|
||||
for (const Partition& partition : disc.GetPartitions())
|
||||
{
|
||||
u32 tmd_size;
|
||||
u64 tmd_offset;
|
||||
|
@ -222,7 +222,7 @@ bool DiscScrubber::ParsePartitionData(const Volume& disc, const Partition& parti
|
|||
|
||||
void DiscScrubber::ParseFileSystemData(u64 partition_data_offset, const FileInfo& directory)
|
||||
{
|
||||
for (const DiscIO::FileInfo& file_info : directory)
|
||||
for (const FileInfo& file_info : directory)
|
||||
{
|
||||
DEBUG_LOG_FMT(DISCIO, "Scrubbing {}", file_info.GetPath());
|
||||
if (file_info.IsDirectory())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue