ngui: make it work with zig release v0.10.0

only one tiny change: @maximum -> @max.
nothing to do for nd.
pull/20/head
alex 2 years ago
parent 7226c31dfb
commit 5332d00290

@ -201,7 +201,7 @@ pub fn main() anyerror!void {
return; return;
} }
// sleep at least 1ms // sleep at least 1ms
time.sleep(@maximum(1, till_next_ms) * time.ns_per_ms); time.sleep(@max(1, till_next_ms) * time.ns_per_ms);
} }
} }