Expand Up
@@ -314,7 +314,7 @@ bool CWII_IPC_HLE_Device_es::IOCtlV(u32 _CommandAddress)
}
}
INFO_LOG (WII_IPC_ES, " IOCTL_ES_READCONTENT: CFD %x, Addr 0x%x, Size %i -> stream pos %i (Index %i)" , CFD, Addr, Size , rContent.m_Position , rContent.m_pContent ->m_Index );
INFO_LOG (WII_IPC_ES, " IOCTL_ES_READCONTENT: CFD %x, Address 0x%x, Size %i -> stream pos %i (Index %i)" , CFD, Addr, Size , rContent.m_Position , rContent.m_pContent ->m_Index );
Memory::Write_U32 (Size , _CommandAddress + 0x4 );
return true ;
Expand Down
Expand Up
@@ -365,7 +365,7 @@ bool CWII_IPC_HLE_Device_es::IOCtlV(u32 _CommandAddress)
break ;
}
INFO_LOG (WII_IPC_ES, " IOCTL_ES_SEEKCONTENT: CFD %x, Addr 0x%x, Mode %i -> Pos %i" , CFD, Addr, Mode, rContent.m_Position );
INFO_LOG (WII_IPC_ES, " IOCTL_ES_SEEKCONTENT: CFD %x, Address 0x%x, Mode %i -> Pos %i" , CFD, Addr, Mode, rContent.m_Position );
Memory::Write_U32 (rContent.m_Position , _CommandAddress + 0x4 );
return true ;
Expand Down
Expand Up
@@ -575,7 +575,7 @@ bool CWII_IPC_HLE_Device_es::IOCtlV(u32 _CommandAddress)
const DiscIO::INANDContentLoader& Loader = AccessContentDevice (TitleID);
INFO_LOG (WII_IPC_ES, " IOCTL_ES_GETTMDVIEWCNT: title: %08x/%08x buffersize : %i" , (u32)(TitleID >> 32 ), (u32)TitleID, MaxCount);
INFO_LOG (WII_IPC_ES, " IOCTL_ES_GETTMDVIEWCNT: title: %08x/%08x buffer size : %i" , (u32)(TitleID >> 32 ), (u32)TitleID, MaxCount);
if (Loader.IsValid ())
{
Expand Down
Expand Up
@@ -682,7 +682,7 @@ bool CWII_IPC_HLE_Device_es::IOCtlV(u32 _CommandAddress)
const DiscIO::INANDContentLoader& Loader = AccessContentDevice (TitleID);
INFO_LOG (WII_IPC_ES, " IOCTL_ES_GETSTOREDTMD: title: %08x/%08x buffersize : %i" , (u32)(TitleID >> 32 ), (u32)TitleID, MaxCount);
INFO_LOG (WII_IPC_ES, " IOCTL_ES_GETSTOREDTMD: title: %08x/%08x buffer size : %i" , (u32)(TitleID >> 32 ), (u32)TitleID, MaxCount);
if (Loader.IsValid () && Buffer.NumberPayloadBuffer )
{
Expand Down