Fix yield on Android

This commit is contained in:
Wojtek Figat
2025-07-30 19:08:58 +02:00
parent 5e4d564338
commit 492a5f979d

View File

@@ -750,7 +750,7 @@ void AndroidPlatform::Sleep(int32 milliseconds)
void AndroidPlatform::Yield() void AndroidPlatform::Yield()
{ {
pthread_yield(); sched_yield();
} }
double AndroidPlatform::GetTimeSeconds() double AndroidPlatform::GetTimeSeconds()