Fixed bug amb70 - include files not semicolon-correct
Also, removed OLOcode from amxmisc.inc
This commit is contained in:
@ -41,19 +41,19 @@ native Float:vector_distance(const Float:vVector[3], const Float:vVector2[3]);
|
||||
*/
|
||||
stock IVecFVec(const IVec[3], Float:FVec[3])
|
||||
{
|
||||
FVec[0] = float(IVec[0])
|
||||
FVec[1] = float(IVec[1])
|
||||
FVec[2] = float(IVec[2])
|
||||
FVec[0] = float(IVec[0]);
|
||||
FVec[1] = float(IVec[1]);
|
||||
FVec[2] = float(IVec[2]);
|
||||
|
||||
return 1
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Changes a float vec to an integer vec */
|
||||
stock FVecIVec(const Float:FVec[3], IVec[3])
|
||||
{
|
||||
IVec[0] = floatround(FVec[0])
|
||||
IVec[1] = floatround(FVec[1])
|
||||
IVec[2] = floatround(FVec[2])
|
||||
|
||||
return 1
|
||||
IVec[0] = floatround(FVec[0]);
|
||||
IVec[1] = floatround(FVec[1]);
|
||||
IVec[2] = floatround(FVec[2]);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user