소스 검색

Merge pull request #17075 from paulloz/fix-build-mono-debug-notools

[mono] fix build error when compiling with mono, tools=no, target=debug
Rémi Verschelde 7 년 전
부모
커밋
a6d4438fab
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      modules/mono/mono_gd/gd_mono_utils.cpp

+ 1 - 1
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;