mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 00:41:26 +12:00
system: Do not send dbg command if dbg hook is not present.
This commit is contained in:
parent
8e451126ac
commit
6c01658d37
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ public:
|
||||||
|
|
||||||
void SendDbgCommand(DbgCommand cmd, class CPUThread* thread = nullptr)
|
void SendDbgCommand(DbgCommand cmd, class CPUThread* thread = nullptr)
|
||||||
{
|
{
|
||||||
m_cb.send_dbg_command(cmd, thread);
|
if (m_cb.send_dbg_command) m_cb.send_dbg_command(cmd, thread);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Returns a future object associated with the result of the function called from the GUI thread
|
// Returns a future object associated with the result of the function called from the GUI thread
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue