Merge pull request #4934 from leoetlino/es-cfd

IOS/ES: Fix the initial content FD value
This commit is contained in:
Pierre Bourdon 2017-02-20 12:40:00 +01:00 committed by GitHub
commit f07a6944d1
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;