mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
Second and final pass of clearing out tabs.
This commit is contained in:
@ -238,7 +238,7 @@ bool ParseDisc()
|
||||
|
||||
for (auto& rPartition : PartitionGroup[x].PartitionsVec)
|
||||
{
|
||||
const SPartitionHeader& rHeader = rPartition.Header;
|
||||
const SPartitionHeader& rHeader = rPartition.Header;
|
||||
|
||||
MarkAsUsed(rPartition.Offset, 0x2c0);
|
||||
|
||||
|
@ -92,7 +92,7 @@ public:
|
||||
|
||||
virtual ~CNANDContentLoader();
|
||||
|
||||
bool IsValid() const override { return m_Valid; }
|
||||
bool IsValid() const override { return m_Valid; }
|
||||
void RemoveTitle(void) const override;
|
||||
u64 GetTitleID() const override { return m_TitleID; }
|
||||
u16 GetIosVersion() const override { return m_IosVersion; }
|
||||
|
@ -240,8 +240,8 @@ std::string CVolumeDirectory::ExtractDirectoryName(const std::string& _rDirector
|
||||
if(lastSep != directoryName.size() - 1)
|
||||
{
|
||||
// TODO: This assumes that file names will always have a dot in them
|
||||
// and directory names never will; both assumptions are often
|
||||
// right but in general wrong.
|
||||
// and directory names never will; both assumptions are often
|
||||
// right but in general wrong.
|
||||
size_t extensionStart = directoryName.find_last_of('.');
|
||||
if(extensionStart != std::string::npos && extensionStart > lastSep)
|
||||
{
|
||||
@ -344,7 +344,7 @@ void CVolumeDirectory::BuildFST()
|
||||
// read data from physical disk to rootEntry
|
||||
u32 totalEntries = AddDirectoryEntries(m_rootDirectory, rootEntry) + 1;
|
||||
|
||||
m_fstNameOffset = totalEntries * ENTRY_SIZE; // offset in FST nameTable
|
||||
m_fstNameOffset = totalEntries * ENTRY_SIZE; // offset in FST nameTable
|
||||
m_fstSize = m_fstNameOffset + m_totalNameSize;
|
||||
m_FSTData = new u8[(u32)m_fstSize];
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
namespace DiscIO
|
||||
{
|
||||
class CVolumeGC : public IVolume
|
||||
class CVolumeGC : public IVolume
|
||||
{
|
||||
public:
|
||||
CVolumeGC(IBlobReader* _pReader);
|
||||
|
@ -12,7 +12,7 @@
|
||||
|
||||
namespace DiscIO
|
||||
{
|
||||
class CVolumeWiiCrypted : public IVolume
|
||||
class CVolumeWiiCrypted : public IVolume
|
||||
{
|
||||
public:
|
||||
CVolumeWiiCrypted(IBlobReader* _pReader, u64 _VolumeOffset, const unsigned char* _pVolumeKey);
|
||||
|
Reference in New Issue
Block a user