소스 검색

Merge pull request #9893 from RandomShaper/fix-err-format-2.1

Fix misplaced quote in error messsage
Pedro J. Estébanez 8 년 전
부모
커밋
a116f04a3e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      core/script_debugger_remote.cpp

+ 1 - 1
core/script_debugger_remote.cpp

@@ -74,7 +74,7 @@ Error ScriptDebuggerRemote::connect_to_host(const String &p_host, uint16_t p_por
 		} else {
 
 			OS::get_singleton()->delay_usec(1000000);
-			print_line("Remote Debugger: Connection failed with status: " + String::num(tcp_client->get_status()) + "'', retrying in 1 sec.");
+			print_line("Remote Debugger: Connection failed with status: '" + String::num(tcp_client->get_status()) + "', retrying in 1 sec.");
 		};
 	};