diff options
| author | Ignacio Etcheverry <neikeq@users.noreply.github.com> | 2018-11-08 01:52:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-08 01:52:27 +0100 |
| commit | 6d7dc9d98bba92d6c8ff66b053d088bb01d8b000 (patch) | |
| tree | 10a899d0b8ad94f4b3080dcba28e589550cbee82 /modules/mono/csharp_script.cpp | |
| parent | daa168677233e32d4f6125f3ee5e478892d10e73 (diff) | |
| parent | 02d5ff4cd055d2ff29873647840e7b94dc66f072 (diff) | |
| download | redot-engine-6d7dc9d98bba92d6c8ff66b053d088bb01d8b000.tar.gz | |
Merge pull request #23583 from neikeq/ee
Improve the C# API projects generation
Diffstat (limited to 'modules/mono/csharp_script.cpp')
| -rw-r--r-- | modules/mono/csharp_script.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp index a048baf5d7..700e518cfc 100644 --- a/modules/mono/csharp_script.cpp +++ b/modules/mono/csharp_script.cpp @@ -2770,7 +2770,8 @@ Error ResourceFormatSaverCSharpScript::save(const String &p_path, const RES &p_r "Compile", ProjectSettings::get_singleton()->globalize_path(p_path)); } else { - ERR_PRINTS("Cannot add " + p_path + " to the C# project because it could not be created."); + ERR_PRINTS("Failed to create C# project"); + ERR_PRINTS("Cannot add " + p_path + " to the C# project"); } } #endif |
