mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 23:31:53 -05:00
Remove duplicate ERR_PRINTS macro
This commit is contained in:
@@ -329,7 +329,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;
|
||||
@@ -364,7 +364,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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user