Skip to content

Commit

Permalink
Merge branch 'main' of github.com:gk646/raynodes
Browse files Browse the repository at this point in the history
  • Loading branch information
gk646 committed May 6, 2024
2 parents ffaa693 + 8db8869 commit 7472c4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/Importer.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class RnImport;
// "path" can be relative (to the current CWD) or absolute
RnImport ParseRN(const char* path);

#define COMPONENTS_PER_NODE 6
#define COMPS_PER_NODE 6
#define DATAPOINTS_PER_COMPONENT 4
#define USED_LINE_SEPARATOR '|' // Set this to the linesep used by cxio (default '|')

Expand Down Expand Up @@ -99,7 +99,7 @@ class ComponentData {
struct NodeData {
NodeID nodeID = 0;
uint32_t typeHash = 0;
std::array<ComponentData, COMPONENTS_PER_NODE> compData;
std::array<ComponentData, COMPS_PER_NODE> compData;
};

class RnImport final {
Expand Down

0 comments on commit 7472c4b

Please sign in to comment.