mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
[Core] Replace ERR_FAIL_COND
with ERR_FAIL_NULL
where applicable
This commit is contained in:
parent
221884e6bc
commit
893f889d74
44 changed files with 152 additions and 152 deletions
|
@ -65,7 +65,7 @@ void remove_print_handler(const PrintHandlerList *p_handler) {
|
|||
//OS::get_singleton()->print("print handler list is %p\n",print_handler_list);
|
||||
|
||||
_global_unlock();
|
||||
ERR_FAIL_COND(l == nullptr);
|
||||
ERR_FAIL_NULL(l);
|
||||
}
|
||||
|
||||
void __print_line(String p_string) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue