mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 20:58:54 +00:00
DiscIO: Replace "raw" functions with "decrypt" parameters
This is intended to make decryption look less implicit in the code.
This commit is contained in:
parent
72f8f243c7
commit
bb93336ecf
19 changed files with 174 additions and 195 deletions
|
@ -35,7 +35,7 @@ public:
|
|||
private:
|
||||
bool m_Initialized;
|
||||
bool m_Valid;
|
||||
u32 m_OffsetShift; // WII offsets are all shifted
|
||||
bool m_Wii;
|
||||
|
||||
std::vector <SFileInfo> m_FileInfoVector;
|
||||
u32 Read32(u64 _Offset) const;
|
||||
|
@ -44,6 +44,7 @@ private:
|
|||
bool DetectFileSystem();
|
||||
void InitFileSystem();
|
||||
size_t BuildFilenames(const size_t _FirstIndex, const size_t _LastIndex, const std::string& _szDirectory, u64 _NameTableOffset);
|
||||
u32 GetOffsetShift() const;
|
||||
};
|
||||
|
||||
} // namespace
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue