Minimize unneeded casts

This commit is contained in:
gingerBill
2021-03-03 14:31:17 +00:00
parent 75f127af7c
commit b727b6438b
24 changed files with 108 additions and 109 deletions
+1 -1
View File
@@ -32,6 +32,6 @@ _tick_now :: proc() -> Tick {
now: win32.LARGE_INTEGER;
win32.QueryPerformanceCounter(&now);
_nsec := i64(mul_div_u64(i64(now), 1e9, i64(qpc_frequency)));
_nsec := mul_div_u64(i64(now), 1e9, i64(qpc_frequency));
return Tick{_nsec = _nsec};
}