diff options
| author | Matthew Parlane <parlane@gmail.com> | 2017-03-05 14:28:28 +1300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-05 14:28:28 +1300 |
| commit | c2594695b8beda137c808e666b0651a1f09a293c (patch) | |
| tree | ff3d2c20f5a38166d39db555d500992c8411bcb2 /Source/Core/DiscIO/NANDContentLoader.cpp | |
| parent | c21193c6f5e1a774b24427502ade677783012e92 (diff) | |
| parent | 52e8486b7cf2cf363cc8842a25c49accb9a80957 (diff) | |
Merge pull request #5001 from leoetlino/es-titles
IOS/ES: Fix ES_GetTitles and implement ES_GetOwnedTitles
Diffstat (limited to 'Source/Core/DiscIO/NANDContentLoader.cpp')
| -rw-r--r-- | Source/Core/DiscIO/NANDContentLoader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/NANDContentLoader.cpp b/Source/Core/DiscIO/NANDContentLoader.cpp index 914e23191e..c08e5bbef8 100644 --- a/Source/Core/DiscIO/NANDContentLoader.cpp +++ b/Source/Core/DiscIO/NANDContentLoader.cpp @@ -158,7 +158,7 @@ CNANDContentLoader::~CNANDContentLoader() bool CNANDContentLoader::IsValid() const { - return m_Valid && m_tmd.IsValid(); + return m_Valid; } const SNANDContent* CNANDContentLoader::GetContentByID(u32 id) const |
