mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 22:19:02 +00:00
IsGoodAddr() bug fixed
This commit is contained in:
parent
a71053ae15
commit
01aa74e4a8
6 changed files with 181 additions and 220 deletions
|
|
@ -109,7 +109,7 @@ s32 sys_timer_sleep(u32 sleep_time)
|
|||
std::this_thread::sleep_for(std::chrono::seconds(1));
|
||||
if (Emu.IsStopped())
|
||||
{
|
||||
sys_timer.Warning("sys_timer_sleep(sleep_time=%d)", sleep_time);
|
||||
sys_timer.Warning("sys_timer_sleep(sleep_time=%d) aborted", sleep_time);
|
||||
return CELL_OK;
|
||||
}
|
||||
}
|
||||
|
|
@ -125,7 +125,7 @@ s32 sys_timer_usleep(u64 sleep_time)
|
|||
std::this_thread::sleep_for(std::chrono::seconds(1));
|
||||
if (Emu.IsStopped())
|
||||
{
|
||||
sys_timer.Warning("sys_timer_usleep(sleep_time=%lld)", sleep_time);
|
||||
sys_timer.Warning("sys_timer_usleep(sleep_time=%lld) aborted", sleep_time);
|
||||
return CELL_OK;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue