mirror of
https://github.com/FWGS/hlsdk-xash3d
synced 2024-11-22 09:57:21 +01:00
Fix VectorCopy to work correctly with pointers again
This commit is contained in:
parent
c6d793231c
commit
18127ef848
@ -63,7 +63,7 @@ typedef unsigned char byte;
|
||||
#include "animation.h"
|
||||
#include "scriptevent.h"
|
||||
#include "studio.h"
|
||||
#define VectorCopy(x,y) (y = x)
|
||||
#define VectorCopy(a,b) {(b)[0]=(a)[0];(b)[1]=(a)[1];(b)[2]=(a)[2];}
|
||||
#endif
|
||||
|
||||
#pragma warning( disable : 4244 )
|
||||
|
Loading…
Reference in New Issue
Block a user