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