ios/es: make fd s32 -> quiets warnings
This commit is contained in:
parent
8f12d7fb3c
commit
ebd3d43b7d
|
@ -328,7 +328,7 @@ void ES::DoState(PointerWrap& p)
|
|||
}
|
||||
}
|
||||
|
||||
ES::ContextArray::iterator ES::FindActiveContext(u32 fd)
|
||||
ES::ContextArray::iterator ES::FindActiveContext(s32 fd)
|
||||
{
|
||||
return std::find_if(m_contexts.begin(), m_contexts.end(),
|
||||
[fd](const auto& context) { return context.ipc_fd == fd && context.active; });
|
||||
|
|
|
@ -94,7 +94,7 @@ public:
|
|||
TitleExportContext title_export;
|
||||
bool active = false;
|
||||
// We use this to associate an IPC fd with an ES context.
|
||||
u32 ipc_fd = -1;
|
||||
s32 ipc_fd = -1;
|
||||
};
|
||||
|
||||
// Title management
|
||||
|
@ -277,7 +277,7 @@ private:
|
|||
IPCCommandResult DIGetTMDSize(const IOCtlVRequest& request);
|
||||
IPCCommandResult DIGetTMD(const IOCtlVRequest& request);
|
||||
|
||||
ContextArray::iterator FindActiveContext(u32 fd);
|
||||
ContextArray::iterator FindActiveContext(s32 fd);
|
||||
ContextArray::iterator FindInactiveContext();
|
||||
|
||||
bool LaunchIOS(u64 ios_title_id);
|
||||
|
|
Loading…
Reference in New Issue