IsGoodAddr() bug fixed

This commit is contained in:
Nekotekina 2014-07-14 23:15:30 +04:00
parent a71053ae15
commit 01aa74e4a8
6 changed files with 181 additions and 220 deletions

View file

@ -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;
}
}