mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00:00
PPU: Fix logging of sys_interrupt syscalls
This commit is contained in:
parent
2f579311b8
commit
cc2fa94fa1
1 changed files with 3 additions and 3 deletions
|
@ -2225,7 +2225,7 @@ void ppu_thread::cpu_sleep()
|
|||
|
||||
void ppu_thread::cpu_on_stop()
|
||||
{
|
||||
if (current_function)
|
||||
if (current_function && is_stopped())
|
||||
{
|
||||
if (start_time)
|
||||
{
|
||||
|
@ -2235,10 +2235,10 @@ void ppu_thread::cpu_on_stop()
|
|||
{
|
||||
ppu_log.warning("'%s' aborted", current_function);
|
||||
}
|
||||
|
||||
current_function = {};
|
||||
}
|
||||
|
||||
current_function = {};
|
||||
|
||||
// TODO: More conditions
|
||||
if (Emu.IsStopped() && g_cfg.core.ppu_debug)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue