mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
NandPaths: Make function parameters consistent
Also drops trailing underscores from said parameter names.
This commit is contained in:
@ -21,11 +21,11 @@ std::string RootUserPath(FromWhichRoot from);
|
||||
// Returns /import/%08x/%08x. Intended for use by ES.
|
||||
std::string GetImportTitlePath(u64 title_id, FromWhichRoot from = FROM_SESSION_ROOT);
|
||||
|
||||
std::string GetTicketFileName(u64 _titleID, FromWhichRoot from);
|
||||
std::string GetTicketFileName(u64 title_id, FromWhichRoot from);
|
||||
std::string GetTitlePath(u64 title_id, FromWhichRoot from);
|
||||
std::string GetTitleDataPath(u64 _titleID, FromWhichRoot from);
|
||||
std::string GetTitleContentPath(u64 _titleID, FromWhichRoot from);
|
||||
std::string GetTMDFileName(u64 _titleID, FromWhichRoot from);
|
||||
std::string GetTitleDataPath(u64 title_id, FromWhichRoot from);
|
||||
std::string GetTitleContentPath(u64 title_id, FromWhichRoot from);
|
||||
std::string GetTMDFileName(u64 title_id, FromWhichRoot from);
|
||||
|
||||
// Returns whether a path is within an installed title's directory.
|
||||
bool IsTitlePath(const std::string& path, FromWhichRoot from, u64* title_id = nullptr);
|
||||
|
Reference in New Issue
Block a user