mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-23 20:33:05 +00:00
Use powf instead of pow.
This commit is contained in:
parent
b21e967581
commit
763e85b3ae
1 changed files with 1 additions and 1 deletions
2
exec.c
2
exec.c
|
@ -827,7 +827,7 @@ static int qc_pow(qc_program_t *prog) {
|
|||
CheckArgs(2);
|
||||
base = GetArg(0);
|
||||
exp = GetArg(1);
|
||||
out._float = pow(base->_float, exp->_float);
|
||||
out._float = powf(base->_float, exp->_float);
|
||||
Return(out);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue