summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2015-05-18 11:14:02 -0300
committerJuan Linietsky <reduzio@gmail.com>2015-05-18 11:14:02 -0300
commit5900e7f589d50268d49e2e67d3a498d1b01fe03a (patch)
tree9cb846b8fa92e64211e8c54bb78860873e723cb7 /tools
parente323cc050564fdb1b5cf81793d173cbd9483f55a (diff)
fix a compile error
Diffstat (limited to 'tools')
-rw-r--r--tools/editor/editor_node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp
index f5139cfe4a..56b813344a 100644
--- a/tools/editor/editor_node.cpp
+++ b/tools/editor/editor_node.cpp
@@ -2656,7 +2656,7 @@ Error EditorNode::save_optimized_copy(const String& p_scene,const String& p_pres
}
}
- ERR_EXPLAIN("Preset '"+p_preset+"' references unexisting saver: "+type);
+ ERR_EXPLAIN("Preset '"+p_preset+"' references nonexistent saver: "+type);
ERR_FAIL_COND_V(saver.is_null(),ERR_INVALID_DATA);
List<Variant> keys;