mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-03-25 20:14:26 -06:00
PPU: Fix logging of sys_interrupt syscalls
This commit is contained in:
parent
2f579311b8
commit
cc2fa94fa1
@ -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…
Reference in New Issue
Block a user