WFSI: Stub out SET_FST_BUFFER.

This commit is contained in:
Pierre Bourdon 2017-08-16 01:50:58 +02:00
parent 92387cb052
commit c81636d9a8
2 changed files with 9 additions and 0 deletions

View File

@ -248,6 +248,13 @@ IPCCommandResult WFSI::IOCtl(const IOCtlRequest& request)
break;
case IOCTL_WFSI_SET_FST_BUFFER:
{
INFO_LOG(IOS, "IOCTL_WFSI_SET_FST_BUFFER: address %08x, size %08x", request.buffer_in,
request.buffer_in_size);
break;
}
case IOCTL_WFSI_LOAD_DOL:
{
std::string path = StringFromFormat("/vol/%s/title/%s/%s/content", m_device_name.c_str(),

View File

@ -84,6 +84,8 @@ private:
IOCTL_WFSI_APPLY_TITLE_PROFILE = 0x89,
IOCTL_WFSI_SET_FST_BUFFER = 0x8e,
IOCTL_WFSI_LOAD_DOL = 0x90,
};
};