diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-02-27 08:57:37 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2019-02-27 09:01:24 +0100 |
commit | 0ba75c195efffcb098ac74440ffb0fa9c85d0d96 (patch) | |
tree | 4beaa2d008b5c40a469319552e46cfc8e9e94eb0 /scene/resources/resource_format_text.cpp | |
parent | caa42667e801318fcb78c9f52921a48cf985b62f (diff) | |
download | redot-engine-0ba75c195efffcb098ac74440ffb0fa9c85d0d96.tar.gz |
Fix GCC 5 build after #26331 and cleanup style
Also cleanup after 01a3dd3.
Diffstat (limited to 'scene/resources/resource_format_text.cpp')
-rw-r--r-- | scene/resources/resource_format_text.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/resource_format_text.cpp b/scene/resources/resource_format_text.cpp index 44899bf9fc..210fbe9f20 100644 --- a/scene/resources/resource_format_text.cpp +++ b/scene/resources/resource_format_text.cpp @@ -1389,7 +1389,7 @@ void ResourceFormatSaverTextInstance::_find_resources(const Variant &p_variant, if (!p_main && (!bundle_resources) && res->get_path().length() && res->get_path().find("::") == -1) { if (res->get_path() == local_path) { - ERR_PRINTS("Circular reference to resource being saved found: '"+local_path+"' will be null next time it's loaded."); + ERR_PRINTS("Circular reference to resource being saved found: '" + local_path + "' will be null next time it's loaded."); return; } int index = external_resources.size(); |