mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 06:51:26 +12: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()
|
void ppu_thread::cpu_on_stop()
|
||||||
{
|
{
|
||||||
if (current_function)
|
if (current_function && is_stopped())
|
||||||
{
|
{
|
||||||
if (start_time)
|
if (start_time)
|
||||||
{
|
{
|
||||||
|
@ -2235,10 +2235,10 @@ void ppu_thread::cpu_on_stop()
|
||||||
{
|
{
|
||||||
ppu_log.warning("'%s' aborted", current_function);
|
ppu_log.warning("'%s' aborted", current_function);
|
||||||
}
|
}
|
||||||
|
|
||||||
current_function = {};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
current_function = {};
|
||||||
|
|
||||||
// TODO: More conditions
|
// TODO: More conditions
|
||||||
if (Emu.IsStopped() && g_cfg.core.ppu_debug)
|
if (Emu.IsStopped() && g_cfg.core.ppu_debug)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue