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 2023-01-30 12:41:24 +01:00
parent 7226c31dfb
commit 5332d00290
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ pub fn main() anyerror!void {
return;
}
// 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);
}
}