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:
parent
72ed8514c5
commit
53c594abe0
2 changed files with 5 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue