A little fix for nodes on 64bit arches.

This commit is contained in:
Night Owl 2017-07-08 20:13:41 +05:00
parent 4d1dc131b9
commit c16e1ecfef
1 changed files with 4 additions and 0 deletions

View File

@ -104,7 +104,11 @@ typedef struct
//=========================================================
// 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.
#endif
class CGraph
{