mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-27 22:33:17 +00:00
- fix typo in sleep
This commit is contained in:
parent
9f758b0032
commit
6078428b84
1 changed files with 1 additions and 1 deletions
|
@ -252,7 +252,7 @@ void VulkanFrameBuffer::FPSLimit()
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Sleep, but try to wake before deadline.
|
// Sleep, but try to wake before deadline.
|
||||||
sleep_for(milliseconds(timeToWait - 1'000'000));
|
sleep_for(microseconds(timeToWait - 1'000'000));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue