Take this out - cores that need usleep and such - address it in

the core itself, or rewrite the reference so it uses libretro-common
sleeping functions instead
This commit is contained in:
twinaphex 2020-04-19 18:15:47 +02:00
parent c2319b3a21
commit 48b6b4ca8e

View File

@ -557,22 +557,6 @@ static uint64_t frontend_psp_get_mem_used(void)
}
#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_psp_get_environment_settings,
frontend_psp_init,