mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
NANDImporter: Reduce recursion in ProcessEntry
It also simplifies the code flow, as it no longer goes backwards through the filesystem chain.
This commit is contained in:
@ -55,8 +55,8 @@ private:
|
||||
std::string GetPath(const NANDFSTEntry& entry, const std::string& parent_path);
|
||||
std::string FormatDebugString(const NANDFSTEntry& entry);
|
||||
void ProcessEntry(u16 entry_number, const std::string& parent_path);
|
||||
void ProcessFile(const NANDFSTEntry& entry, const std::string& parent_path);
|
||||
void ProcessDirectory(const NANDFSTEntry& entry, const std::string& parent_path);
|
||||
void ProcessFile(const NANDFSTEntry& entry, const std::string& path);
|
||||
void ProcessDirectory(const NANDFSTEntry& entry, const std::string& path);
|
||||
void ExportKeys();
|
||||
|
||||
std::string m_nand_root;
|
||||
|
Reference in New Issue
Block a user