diff options
| author | Paul Joannon | 2018-02-27 10:36:58 +0100 |
|---|---|---|
| committer | Rémi Verschelde | 2018-02-27 11:25:10 +0100 |
| commit | 87242c7b9292b83b1ecc546cb5f93ce511aa8645 (patch) | |
| tree | 0a71a2f15cd75829c466f4d2cff758b2f351c13b /modules | |
| parent | 4eb9ee9355ce0c825bf0149457809ce917c264d4 (diff) | |
| download | godot-87242c7b9292b83b1ecc546cb5f93ce511aa8645.tar.gz godot-87242c7b9292b83b1ecc546cb5f93ce511aa8645.tar.zst godot-87242c7b9292b83b1ecc546cb5f93ce511aa8645.zip | |
fix build error when compiling with mono, tools=no, target=release
change TTR to RTR in `print_unhandled_exception`
(cherry picked from commit 90a705d67102c30083d91cff47f35300eb5049a9)
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 297992f62..db136a131 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; |
