diff options
author | Paul Joannon <hello@pauljoannon.com> | 2018-02-27 10:36:58 +0100 |
---|---|---|
committer | Paul Joannon <hello@pauljoannon.com> | 2018-02-27 10:36:58 +0100 |
commit | 90a705d67102c30083d91cff47f35300eb5049a9 (patch) | |
tree | 6273ed5e9f4e520f6c09929604f4bc842211c4c2 /modules | |
parent | 1bd0fd90cc40349df9951b24244c1cfb6d3c494b (diff) |
fix build error when compiling with mono, tools=no, target=release
change TTR to RTR in `print_unhandled_exception`
Diffstat (limited to 'modules')
-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; |