Fixes issue 5428. Thanks delroth.
This commit is contained in:
parent
c83f87dfc4
commit
1bc5f41e40
|
@ -83,7 +83,7 @@ static ipc_msg_queue reply_queue; // arm -> ppc
|
||||||
void Init()
|
void Init()
|
||||||
{
|
{
|
||||||
_dbg_assert_msg_(WII_IPC_HLE, g_DeviceMap.empty(), "DeviceMap isnt empty on init");
|
_dbg_assert_msg_(WII_IPC_HLE, g_DeviceMap.empty(), "DeviceMap isnt empty on init");
|
||||||
|
CWII_IPC_HLE_Device_es::m_ContentFile = "";
|
||||||
u32 i;
|
u32 i;
|
||||||
for (i=0; i<IPC_MAX_FDS; i++)
|
for (i=0; i<IPC_MAX_FDS; i++)
|
||||||
{
|
{
|
||||||
|
|
|
@ -38,6 +38,9 @@ public:
|
||||||
|
|
||||||
virtual bool IOCtlV(u32 _CommandAddress);
|
virtual bool IOCtlV(u32 _CommandAddress);
|
||||||
static u32 ES_DIVerify(u8 *_pTMD, u32 _sz);
|
static u32 ES_DIVerify(u8 *_pTMD, u32 _sz);
|
||||||
|
|
||||||
|
// This should only be cleared on power reset
|
||||||
|
static std::string m_ContentFile;
|
||||||
private:
|
private:
|
||||||
|
|
||||||
enum
|
enum
|
||||||
|
@ -134,8 +137,6 @@ private:
|
||||||
std::vector<u64> m_TitleIDs;
|
std::vector<u64> m_TitleIDs;
|
||||||
u64 m_TitleID;
|
u64 m_TitleID;
|
||||||
u32 AccessIdentID;
|
u32 AccessIdentID;
|
||||||
// This should only be cleared on power reset
|
|
||||||
static std::string m_ContentFile;
|
|
||||||
|
|
||||||
u64 GetCurrentTitleID() const;
|
u64 GetCurrentTitleID() const;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue