You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
PR #894: wrong parsing of the return of adb cmd: device (Contributed by muzaheed57) with update to accept either tab or space
https://github.com/EpicGames/UnrealEngine/pull/894 #ue4 #android [CL 2473228 by Chris Babcock in Main branch]
This commit is contained in:
@@ -135,9 +135,13 @@ private:
|
||||
// grab the device serial number
|
||||
int32 TabIndex;
|
||||
|
||||
if (!DeviceString.FindChar(TCHAR(' '), TabIndex))
|
||||
// use either tab or space as separator
|
||||
if (!DeviceString.FindChar(TCHAR('\t'), TabIndex))
|
||||
{
|
||||
continue;
|
||||
if (!DeviceString.FindChar(TCHAR(' '), TabIndex))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
FAndroidDeviceInfo NewDeviceInfo;
|
||||
|
||||
Reference in New Issue
Block a user