mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-01-11 15:38:12 +00:00
A little fix for nodes on 64bit arches.
This commit is contained in:
parent
4d1dc131b9
commit
c16e1ecfef
@ -104,7 +104,11 @@ typedef struct
|
|||||||
//=========================================================
|
//=========================================================
|
||||||
// CGraph
|
// CGraph
|
||||||
//=========================================================
|
//=========================================================
|
||||||
|
#if defined(__amd64__) || defined(__aarch64__)
|
||||||
|
#define GRAPH_VERSION (int)17// Was incremented for 64bit arches, because .nod-files have incombatibilities on different arches.
|
||||||
|
#else
|
||||||
#define GRAPH_VERSION (int)16// !!!increment this whever graph/node/link classes change, to obsolesce older disk files.
|
#define GRAPH_VERSION (int)16// !!!increment this whever graph/node/link classes change, to obsolesce older disk files.
|
||||||
|
#endif
|
||||||
|
|
||||||
class CGraph
|
class CGraph
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user