Cleanup: correct inverted variable name

This commit is contained in:
2022-11-16 13:19:06 +01:00
parent 1e88fc251f
commit edcce2c073

View File

@@ -153,7 +153,7 @@ struct NodeState {
/** /**
* Set to true once the node is done running for the first time. * Set to true once the node is done running for the first time.
*/ */
bool had_initialization = true; bool had_initialization = false;
/** /**
* Nodes with side effects should always be executed when their required inputs have been * Nodes with side effects should always be executed when their required inputs have been
* computed. * computed.
@@ -638,7 +638,7 @@ class Executor {
return; return;
} }
if (node_state.had_initialization) { if (!node_state.had_initialization) {
/* Initialize storage. */ /* Initialize storage. */
node_state.storage = fn.init_storage(allocator); node_state.storage = fn.init_storage(allocator);
@@ -670,7 +670,7 @@ class Executor {
} }
} }
node_state.had_initialization = false; node_state.had_initialization = true;
} }
for (const int input_index : node_state.inputs.index_range()) { for (const int input_index : node_state.inputs.index_range()) {