1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Introduce and start using microsecond sleep on Linux (#13445)

This commit is contained in:
ndren 2023-07-22 16:19:49 +01:00 committed by GitHub
parent 72ed8514c5
commit 53c594abe0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View file

@ -4262,8 +4262,8 @@ void FpsControl::limit(IrrlichtDevice *device, f32 *dtime)
if (busy_time < frametime_min) {
sleep_time = frametime_min - busy_time;
if (sleep_time > 1000)
sleep_ms(sleep_time / 1000);
if (sleep_time > 0)
sleep_us(sleep_time);
} else {
sleep_time = 0;
}