diff options
| author | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-03-23 00:34:26 -0500 |
|---|---|---|
| committer | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-03-23 00:34:26 -0500 |
| commit | a3e18cd498e6a02dfd615da25e975f110e8cf365 (patch) | |
| tree | 63d4fabcda7d8d4ddfa1982cc406acf010cb1132 /Source/Core/DiscIO/DiscScrubber.cpp | |
| parent | b8f469dedd155f6fd42239cdf22f239037da6fce (diff) | |
| parent | bd1ce18f9092f2929929513729e8abee8f60e4a5 (diff) | |
Merge pull request #171 from lioncash/rarc-cleanup
File tree building cleanup
Diffstat (limited to 'Source/Core/DiscIO/DiscScrubber.cpp')
| -rw-r--r-- | Source/Core/DiscIO/DiscScrubber.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/DiscScrubber.cpp b/Source/Core/DiscIO/DiscScrubber.cpp index b48967d31b..69d98ff046 100644 --- a/Source/Core/DiscIO/DiscScrubber.cpp +++ b/Source/Core/DiscIO/DiscScrubber.cpp @@ -317,7 +317,7 @@ bool ParsePartitionData(SPartition& _rPartition) // Go through the filesystem and mark entries as used for (size_t currentFile = 0; currentFile < numFiles; currentFile++) { - DEBUG_LOG(DISCIO, "%s", currentFile ? (*Files.at(currentFile)).m_FullPath : "/"); + DEBUG_LOG(DISCIO, "%s", currentFile ? (*Files.at(currentFile)).m_FullPath.c_str() : "/"); // Just 1byte for directory? - it will end up reserving a cluster this way if ((*Files.at(currentFile)).m_NameOffset & 0x1000000) MarkAsUsedE(_rPartition.Offset |
