diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2017-02-20 12:40:00 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-20 12:40:00 +0100 |
| commit | f07a6944d11c03ade64064efb2eefe862d00b3ec (patch) | |
| tree | 924cbd1d996b0b5a684ecd0d497b015485ad02fa /Source/Core | |
| parent | 51944afa56fca91c30c2b098ee75728d3784c0ae (diff) | |
| parent | 696e493accf6c303a8b5aa4669a9090875105824 (diff) | |
Merge pull request #4934 from leoetlino/es-cfd
IOS/ES: Fix the initial content FD value
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/IOS/ES/ES.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/Core/IOS/ES/ES.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/IOS/ES/ES.cpp b/Source/Core/Core/IOS/ES/ES.cpp index 723bb4776b..d0b2c43298 100644 --- a/Source/Core/Core/IOS/ES/ES.cpp +++ b/Source/Core/Core/IOS/ES/ES.cpp @@ -203,7 +203,7 @@ void ES::Close() m_ContentAccessMap.clear(); m_TitleIDs.clear(); m_TitleID = -1; - m_AccessIdentID = 0x6000000; + m_AccessIdentID = 0; INFO_LOG(IOS_ES, "ES: Close"); m_is_active = false; diff --git a/Source/Core/Core/IOS/ES/ES.h b/Source/Core/Core/IOS/ES/ES.h index 2fbce4d7f1..86f447e9a0 100644 --- a/Source/Core/Core/IOS/ES/ES.h +++ b/Source/Core/Core/IOS/ES/ES.h @@ -200,7 +200,7 @@ private: std::vector<u64> m_TitleIDs; u64 m_TitleID = -1; - u32 m_AccessIdentID = 0x6000000; + u32 m_AccessIdentID = 0; // For title installation (ioctls IOCTL_ES_ADDTITLE*). TMDReader m_addtitle_tmd; |
