diff options
| author | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2019-11-06 17:03:04 +0100 |
|---|---|---|
| committer | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-02-05 11:13:24 +0100 |
| commit | 5af3b4ca279c6dac32a8aef45d5d4a5b27fdb718 (patch) | |
| tree | ab29c725796ede3fb53512ce096e3c075737c6f8 /editor/script_editor_debugger.cpp | |
| parent | 2b1084fab363d473385d5be2da6036dc997ef70e (diff) | |
| download | redot-engine-5af3b4ca279c6dac32a8aef45d5d4a5b27fdb718.tar.gz | |
Remove duplicate ERR_PRINT macro.
Diffstat (limited to 'editor/script_editor_debugger.cpp')
| -rw-r--r-- | editor/script_editor_debugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/script_editor_debugger.cpp b/editor/script_editor_debugger.cpp index ab4501bb8a..34547717fd 100644 --- a/editor/script_editor_debugger.cpp +++ b/editor/script_editor_debugger.cpp @@ -338,7 +338,7 @@ void ScriptEditorDebugger::_file_selected(const String &p_file) { FileAccessRef file = FileAccess::open(p_file, FileAccess::WRITE, &err); if (err != OK) { - ERR_PRINTS("Failed to open " + p_file); + ERR_PRINT("Failed to open " + p_file); return; } Vector<String> line; |
