Skip to content

Commit

Permalink
Remove unneeded u64 divide
Browse files Browse the repository at this point in the history
  • Loading branch information
gendlin committed Jun 8, 2024
1 parent db51bae commit 2aa96a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/i_video.c
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ void I_FinishUpdate(void)

if (use_limiter)
{
I_WaitUntil(1000000ull / targetrefresh);
I_WaitUntil(1000000u / targetrefresh);
}
else
{
Expand Down

0 comments on commit 2aa96a1

Please sign in to comment.