Merge pull request #4934 from leoetlino/es-cfd
IOS/ES: Fix the initial content FD value
This commit is contained in:
commit
f07a6944d1
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue