mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
Revert "Take this out - cores that need usleep and such - address it in"
This reverts commit 48b6b4ca8ea45b8a54533c486a0ca7d95eff4fed.
This commit is contained in:
parent
48b6b4ca8e
commit
7e3a400cb7
@ -557,6 +557,22 @@ static uint64_t frontend_psp_get_mem_used(void)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// stdlibc++ references usleep but it's not available.
|
||||||
|
// This is a workaround
|
||||||
|
#ifdef VITA
|
||||||
|
int usleep(uint64_t usec)
|
||||||
|
{
|
||||||
|
sceKernelDelayThread(usec);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
unsigned int sleep(unsigned int seconds)
|
||||||
|
{
|
||||||
|
sceKernelDelayThread(seconds * 1000000LL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
frontend_ctx_driver_t frontend_ctx_psp = {
|
frontend_ctx_driver_t frontend_ctx_psp = {
|
||||||
frontend_psp_get_environment_settings,
|
frontend_psp_get_environment_settings,
|
||||||
frontend_psp_init,
|
frontend_psp_init,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user