1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-13 00:25:19 +02: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
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;
}