diff options
| author | Rémi Verschelde | 2016-07-24 00:02:19 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2016-07-24 00:02:19 +0200 |
| commit | 308d405c31f83ce538fea76d6e88931718afc012 (patch) | |
| tree | c1b30c9d9fd9c60d1bf527f4e1fdb9f0c949b873 /tools/editor/editor_file_system.cpp | |
| parent | ebefdaa598e29791ba83598fd3e3aa3f52f2bf31 (diff) | |
| download | godot-308d405c31f83ce538fea76d6e88931718afc012.tar.gz godot-308d405c31f83ce538fea76d6e88931718afc012.tar.zst godot-308d405c31f83ce538fea76d6e88931718afc012.zip | |
Turn some prints to error logs, remove others
Fixes #5876 in passing.
Diffstat (limited to 'tools/editor/editor_file_system.cpp')
| -rw-r--r-- | tools/editor/editor_file_system.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/editor_file_system.cpp b/tools/editor/editor_file_system.cpp index cb7cefea2..582b9e249 100644 --- a/tools/editor/editor_file_system.cpp +++ b/tools/editor/editor_file_system.cpp @@ -657,7 +657,7 @@ void EditorFileSystem::_scan_new_dir(EditorFileSystemDirectory *p_dir,DirAccess da->change_dir(".."); } } else { - ERR_PRINTS(TTR("Cannot go into subdir:")+" "+E->get()); + ERR_PRINTS("Cannot go into subdir: "+E->get()); } p_progress.update(idx,total); |
