mirror of
https://github.com/tiennm99/godot.git
synced 2026-08-06 22:22:22 +00:00
Fix error macro calls not ending with semicolon
It's not necessary, but the vast majority of calls of error macros do have an ending semicolon, so it's best to be consistent. Most WARN_DEPRECATED calls did *not* have a semicolon, but there's no reason for them to be treated differently.
This commit is contained in:
@@ -1411,7 +1411,7 @@ void EditorNode::_dialog_action(String p_file) {
|
||||
case RESOURCE_SAVE:
|
||||
case RESOURCE_SAVE_AS: {
|
||||
|
||||
ERR_FAIL_COND(saving_resource.is_null())
|
||||
ERR_FAIL_COND(saving_resource.is_null());
|
||||
save_resource_in_path(saving_resource, p_file);
|
||||
saving_resource = Ref<Resource>();
|
||||
ObjectID current = editor_history.get_current();
|
||||
|
||||
Reference in New Issue
Block a user