diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-02-05 15:43:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-05 15:43:01 +0100 |
commit | 7ada59efb79f64882305c26c3a155385e5dcc05c (patch) | |
tree | 55db440c5a85ee333fd18236b3fe897a19fed554 /editor/editor_export.cpp | |
parent | 9591ca3fe58298ef01ab12f1e59e91399a7ce2d4 (diff) | |
parent | 677604685dd2292f44fedb1b9a5b08b22137219a (diff) |
Merge pull request #33391 from madmiraal/cleanup-error_macros
Clean up error_macros.h
Diffstat (limited to 'editor/editor_export.cpp')
-rw-r--r-- | editor/editor_export.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_export.cpp b/editor/editor_export.cpp index d66b386f93..3d8ea0b040 100644 --- a/editor/editor_export.cpp +++ b/editor/editor_export.cpp @@ -748,7 +748,7 @@ Error EditorExportPlatform::export_project_files(const Ref<EditorExportPreset> & config.instance(); Error err = config->load(path + ".import"); if (err != OK) { - ERR_PRINTS("Could not parse: '" + path + "', not exported."); + ERR_PRINT("Could not parse: '" + path + "', not exported."); continue; } |