summaryrefslogtreecommitdiff
path: root/Source/Core/Common/NandPaths.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@innovatetechnologi.es>2017-03-30 18:39:24 +0200
committerLéo Lam <leo@innovatetechnologi.es>2017-03-30 18:48:50 +0200
commite1020cb67487554c6dae0d7fc37ef37fed81f494 (patch)
tree6ea900ccbe9fbddad380cfa54fb5391064566cae /Source/Core/Common/NandPaths.cpp
parentde6c9404fc43f82d6ec33629d6a2ab3a5317c9e2 (diff)
Common: Remove dead code in NandPaths
Diffstat (limited to 'Source/Core/Common/NandPaths.cpp')
-rw-r--r--Source/Core/Common/NandPaths.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/Source/Core/Common/NandPaths.cpp b/Source/Core/Common/NandPaths.cpp
index 9206fbe4e6..5ab7c2afdd 100644
--- a/Source/Core/Common/NandPaths.cpp
+++ b/Source/Core/Common/NandPaths.cpp
@@ -52,38 +52,6 @@ std::string GetTitleContentPath(u64 _titleID, FromWhichRoot from)
(u32)(_titleID >> 32), (u32)_titleID);
}
-bool CheckTitleTMD(u64 _titleID, FromWhichRoot from)
-{
- const std::string TitlePath = GetTMDFileName(_titleID, from);
- if (File::Exists(TitlePath))
- {
- File::IOFile pTMDFile(TitlePath, "rb");
- u64 TitleID = 0;
- pTMDFile.Seek(0x18C, SEEK_SET);
- if (pTMDFile.ReadArray(&TitleID, 1) && _titleID == Common::swap64(TitleID))
- return true;
- }
- INFO_LOG(DISCIO, "Invalid or no tmd for title %08x %08x", (u32)(_titleID >> 32),
- (u32)(_titleID & 0xFFFFFFFF));
- return false;
-}
-
-bool CheckTitleTIK(u64 _titleID, FromWhichRoot from)
-{
- const std::string ticketFileName = Common::GetTicketFileName(_titleID, from);
- if (File::Exists(ticketFileName))
- {
- File::IOFile pTIKFile(ticketFileName, "rb");
- u64 TitleID = 0;
- pTIKFile.Seek(0x1dC, SEEK_SET);
- if (pTIKFile.ReadArray(&TitleID, 1) && _titleID == Common::swap64(TitleID))
- return true;
- }
- INFO_LOG(DISCIO, "Invalid or no tik for title %08x %08x", (u32)(_titleID >> 32),
- (u32)(_titleID & 0xFFFFFFFF));
- return false;
-}
-
std::string EscapeFileName(const std::string& filename)
{
// Prevent paths from containing special names like ., .., ..., ...., and so on