diff --git a/Source/Core/Core/IOS/WFS/WFSI.cpp b/Source/Core/Core/IOS/WFS/WFSI.cpp index a2e856831e..20aea24975 100644 --- a/Source/Core/Core/IOS/WFS/WFSI.cpp +++ b/Source/Core/Core/IOS/WFS/WFSI.cpp @@ -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(), diff --git a/Source/Core/Core/IOS/WFS/WFSI.h b/Source/Core/Core/IOS/WFS/WFSI.h index 5ed9ee21eb..24e942a01d 100644 --- a/Source/Core/Core/IOS/WFS/WFSI.h +++ b/Source/Core/Core/IOS/WFS/WFSI.h @@ -84,6 +84,8 @@ private: IOCTL_WFSI_APPLY_TITLE_PROFILE = 0x89, + IOCTL_WFSI_SET_FST_BUFFER = 0x8e, + IOCTL_WFSI_LOAD_DOL = 0x90, }; };