diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-02-27 11:24:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-27 11:24:54 +0100 |
commit | a6d4438faba3eb23fd526d477c37732ced37047e (patch) | |
tree | 98762ebc631f44ef0934e78430aacb32c87a81e7 | |
parent | 5dfaf89aca2185ff4ef5f960f61e5a26b8245a70 (diff) | |
parent | 90a705d67102c30083d91cff47f35300eb5049a9 (diff) |
Merge pull request #17075 from paulloz/fix-build-mono-debug-notools
[mono] fix build error when compiling with mono, tools=no, target=debug
-rw-r--r-- | modules/mono/mono_gd/gd_mono_utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/mono_gd/gd_mono_utils.cpp b/modules/mono/mono_gd/gd_mono_utils.cpp index 297992f625..db136a1313 100644 --- a/modules/mono/mono_gd/gd_mono_utils.cpp +++ b/modules/mono/mono_gd/gd_mono_utils.cpp @@ -422,7 +422,7 @@ void print_unhandled_exception(MonoObject *p_exc, bool p_recursion_caution) { ScriptLanguage::StackInfo separator; separator.file = ""; - separator.func = "--- " + TTR("End of inner exception stack trace") + " ---"; + separator.func = "--- " + RTR("End of inner exception stack trace") + " ---"; separator.line = 0; Vector<ScriptLanguage::StackInfo> si; |