diff --git a/Source/Core/Core/IOS/WFS/WFSI.cpp b/Source/Core/Core/IOS/WFS/WFSI.cpp index ddf55b8acf..0b23a19419 100644 --- a/Source/Core/Core/IOS/WFS/WFSI.cpp +++ b/Source/Core/Core/IOS/WFS/WFSI.cpp @@ -429,6 +429,9 @@ IPCCommandResult WFSI::IOCtl(const IOCtlRequest& request) break; } + case IOCTL_WFSI_NOOP: + break; + case IOCTL_WFSI_LOAD_DOL: { std::string path = diff --git a/Source/Core/Core/IOS/WFS/WFSI.h b/Source/Core/Core/IOS/WFS/WFSI.h index 6d3346d097..d37ea76d09 100644 --- a/Source/Core/Core/IOS/WFS/WFSI.h +++ b/Source/Core/Core/IOS/WFS/WFSI.h @@ -116,6 +116,8 @@ private: IOCTL_WFSI_SET_FST_BUFFER = 0x8e, + IOCTL_WFSI_NOOP = 0x8f, + IOCTL_WFSI_LOAD_DOL = 0x90, IOCTL_WFSI_FINALIZE_PATCH_INSTALL = 0x91,