mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 06:01:14 +00:00
Add closest_power_of_2 func and implement mix_rate/latency on OS X
This commit is contained in:
parent
33c1d25517
commit
eab850524e
27 changed files with 144 additions and 95 deletions
|
|
@ -446,7 +446,7 @@ void GDFunctions::call(Function p_func, const Variant **p_args, int p_arg_count,
|
|||
VALIDATE_ARG_COUNT(1);
|
||||
VALIDATE_ARG_NUM(0);
|
||||
int64_t num = *p_args[0];
|
||||
r_ret = nearest_power_of_2(num);
|
||||
r_ret = next_power_of_2(num);
|
||||
} break;
|
||||
case OBJ_WEAKREF: {
|
||||
VALIDATE_ARG_COUNT(1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue