diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2023-09-09 17:24:40 +0200 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2023-09-15 20:15:39 +0200 |
commit | 75ee58fd0476360c67375cf403f06644a0aa117e (patch) | |
tree | dbfda27d4bcd56ed9dc6362c2e51521059e98788 /editor/editor_data.cpp | |
parent | 5f1e56ff26be4070496aa51095b9ac2f2b4f4ed8 (diff) | |
download | redot-engine-75ee58fd0476360c67375cf403f06644a0aa117e.tar.gz |
[Editor] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicable
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r-- | editor/editor_data.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp index d8749aa290..e4f198a529 100644 --- a/editor/editor_data.cpp +++ b/editor/editor_data.cpp @@ -106,7 +106,7 @@ void EditorSelectionHistory::cleanup_history() { void EditorSelectionHistory::add_object(ObjectID p_object, const String &p_property, bool p_inspector_only) { Object *obj = ObjectDB::get_instance(p_object); - ERR_FAIL_COND(!obj); + ERR_FAIL_NULL(obj); RefCounted *r = Object::cast_to<RefCounted>(obj); _Object o; if (r) { @@ -700,7 +700,7 @@ bool EditorData::check_and_update_scene(int p_idx) { ERR_FAIL_COND_V(err != OK, false); ep.step(TTR("Updating scene..."), 1); Node *new_scene = pscene->instantiate(PackedScene::GEN_EDIT_STATE_MAIN); - ERR_FAIL_COND_V(!new_scene, false); + ERR_FAIL_NULL_V(new_scene, false); // Transfer selection. List<Node *> new_selection; |