Skip to content
Snippets Groups Projects
Commit 8040c8fe authored by Eidolon's avatar Eidolon
Browse files

Tweaks for kart v1 MR comments

parent 79f736b7
No related branches found
No related tags found
1 merge request!1783Uncapped
......@@ -30,6 +30,12 @@ static precise_t enterprecise, oldenterprecise;
static fixed_t entertic, oldentertics;
static double tictimer;
// A little more than the minimum sleep duration on Windows.
// May be incorrect for other platforms, but we don't currently have a way to
// query the scheduler granularity. SDL will do what's needed to make this as
// low as possible though.
#define MIN_SLEEP_DURATION_MS 2.1
tic_t I_GetTime(void)
{
return g_time.time;
......@@ -90,7 +96,7 @@ void I_SleepDuration(precise_t duration)
precise_t dest;
{
double gran = round(((double)(precision / 1000) * sleepvalue * 2.1));
double gran = round(((double)(precision / 1000) * sleepvalue * MIN_SLEEP_DURATION_MS));
delaygranularity = (UINT64)gran;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment