- fix typo in sleep

This commit is contained in:
Magnus Norddahl 2019-03-26 10:46:31 +01:00
parent 9f758b0032
commit 6078428b84

View file

@ -252,7 +252,7 @@ void VulkanFrameBuffer::FPSLimit()
else
{
// Sleep, but try to wake before deadline.
sleep_for(milliseconds(timeToWait - 1'000'000));
sleep_for(microseconds(timeToWait - 1'000'000));
}
}
}