You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Merging Live++ 1.5.0
#rb none
#jira
#ROBOMERGE-OWNER: robert.manuszewski
#ROBOMERGE-AUTHOR: ben.marsh
#ROBOMERGE-SOURCE: CL 7321355 in //UE4/Release-4.23/... via CL 7321356
#ROBOMERGE-BOT: CORE (Main -> Dev-Core) (v371-7306989)
[CL 7370235 by ben marsh in Dev-Core branch]
This commit is contained in:
@@ -361,6 +361,18 @@ void ClientUserCommandThread::TriggerRecompile(void)
|
||||
}
|
||||
|
||||
|
||||
void ClientUserCommandThread::LogMessage(const wchar_t* message)
|
||||
{
|
||||
const size_t lengthWithoutNull = wcslen(message);
|
||||
const size_t payloadSize = sizeof(wchar_t) * (lengthWithoutNull + 1u);
|
||||
|
||||
ProxyCommand<commands::LogMessage>* proxy = new ProxyCommand<commands::LogMessage>(false, payloadSize);
|
||||
proxy->m_payload.Write(message, payloadSize);
|
||||
|
||||
PushUserCommand(proxy);
|
||||
}
|
||||
|
||||
|
||||
void ClientUserCommandThread::BuildPatch(const wchar_t* moduleNames[], const wchar_t* objPaths[], const wchar_t* amalgamatedObjPaths[], unsigned int count)
|
||||
{
|
||||
const size_t perFileSize = sizeof(wchar_t) * MAX_PATH * 3u;
|
||||
|
||||
Reference in New Issue
Block a user