Remove throwing and catching cpu_flag::stop

Since there is spu_runtime::g_escape function now.
This commit is contained in:
Nekotekina 2019-11-08 01:36:19 +03:00
parent e74a311931
commit ccac9d4777
4 changed files with 7 additions and 29 deletions

View file

@ -868,19 +868,7 @@ void ppu_thread::fast_call(u32 addr, u32 rtoc)
}
});
try
{
exec_task();
}
catch (cpu_flag _s)
{
state += _s;
if (_s != cpu_flag::ret)
{
throw;
}
}
exec_task();
}
u32 ppu_thread::stack_push(u32 size, u32 align_v)