mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-07 08:39:28 +00:00
PINE: fix error format function
This commit is contained in:
parent
bbd308a908
commit
6b556a5206
2 changed files with 3 additions and 3 deletions
|
@ -106,9 +106,9 @@ namespace IPC_socket
|
||||||
m_old_port = port;
|
m_old_port = port;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (!enabled && m_ipc_server)
|
else
|
||||||
{
|
{
|
||||||
m_ipc_server.reset(nullptr);
|
m_ipc_server.reset();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,7 @@ namespace IPC_socket
|
||||||
static void write64(u32 addr, be_t<u64> value);
|
static void write64(u32 addr, be_t<u64> value);
|
||||||
|
|
||||||
template<typename... Args>
|
template<typename... Args>
|
||||||
static void error(const const_str& fmt, const Args&&... args)
|
static void error(const const_str& fmt, Args&&... args)
|
||||||
{
|
{
|
||||||
IPC.error(fmt, std::forward<Args>(args)...);
|
IPC.error(fmt, std::forward<Args>(args)...);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue