Fixed GameLift errors in editor build and fixed AnywhereFleet so that it will quit if errors found

This commit is contained in:
Norman Lansing
2026-03-23 07:44:30 -04:00
parent 7f14cad36f
commit 4121a3925f
3 changed files with 22 additions and 4 deletions

View File

@@ -88,7 +88,7 @@ FPortResult cmdlineparser::details::GetConfiguredOrDefaultPort(const FString& Co
}
}
PortResult.bUsedDefaultPort = true;
PortResult.WarningMessage = FString("Command Line Option for Port is out of ranged... Using Default Port %s", PortResult.Port);
PortResult.WarningMessage = FString::Printf(TEXT("Command Line Option for Port is out of ranged... Using Default Port %d"), PortResult.Port);
return PortResult;
}