From 90a705d67102c30083d91cff47f35300eb5049a9 Mon Sep 17 00:00:00 2001 From: Paul Joannon Date: Tue, 27 Feb 2018 10:36:58 +0100 Subject: [PATCH] fix build error when compiling with mono, tools=no, target=release change TTR to RTR in `print_unhandled_exception` --- modules/mono/mono_gd/gd_mono_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 si;