mirror of
https://github.com/ZDoom/acc.git
synced 2024-11-26 22:01:00 +00:00
- Fixed: Wrong opcode for fixedsqrt.
SVN r3887 (trunk)
This commit is contained in:
parent
7aa5c4d120
commit
292f20fc46
1 changed files with 1 additions and 1 deletions
2
symbol.c
2
symbol.c
|
@ -145,7 +145,7 @@ static internFuncDef_t InternalFunctions[] =
|
|||
{ "vectorangle", PCD_NOP, PCD_VECTORANGLE, 2, 0, 0, YES, NO },
|
||||
{ "vectorlength", PCD_NOP, PCD_VECTORLENGTH, 2, 0, 0, YES, NO },
|
||||
{ "sqrt", PCD_NOP, PCD_SQRT, 1, 0, 0, YES, NO },
|
||||
{ "fixedsqrt", PCD_NOP, PCD_SQRT, 1, 0, 0, YES, NO },
|
||||
{ "fixedsqrt", PCD_NOP, PCD_FIXEDSQRT, 1, 0, 0, YES, NO },
|
||||
{ "checkweapon", PCD_NOP, PCD_CHECKWEAPON, 1, 0, 0, YES, NO },
|
||||
{ "setweapon", PCD_NOP, PCD_SETWEAPON, 1, 0, 0, YES, NO },
|
||||
{ "setmarineweapon", PCD_NOP, PCD_SETMARINEWEAPON, 2, 0, 0, NO, NO },
|
||||
|
|
Loading…
Reference in a new issue