You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Replace remaining uses of NULL with nullptr
Follow-up to #38736 (these uses were likely added after this PR was merged).
This commit is contained in:
@@ -1607,7 +1607,7 @@ Variant VisualScriptInstance::_call_internal(const StringName &p_method, void *p
|
||||
}
|
||||
|
||||
next = node->sequence_outputs[output];
|
||||
VSDEBUG("GOT NEXT NODE - " + (next ? itos(next->get_id()) : "NULL"));
|
||||
VSDEBUG("GOT NEXT NODE - " + (next ? itos(next->get_id()) : "Null"));
|
||||
}
|
||||
|
||||
if (flow_stack) {
|
||||
|
||||
Reference in New Issue
Block a user