mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 02:30:46 +00:00
Exhumed: Use old ksqrt implementation
This commit is contained in:
parent
bdca9420f5
commit
2bf65c9108
1 changed files with 2 additions and 0 deletions
|
@ -9020,6 +9020,8 @@ int32_t LUNATIC_FASTCALL getangle(int32_t xvect, int32_t yvect)
|
|||
//
|
||||
int32_t ksqrt(uint32_t num)
|
||||
{
|
||||
if (enginecompatibility_mode == ENGINECOMPATIBILITY_19950829)
|
||||
return ksqrtasm_old(num);
|
||||
return nsqrtasm(num);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue