From b7b91d8d5b297708058e5625b23019de6b9ca820 Mon Sep 17 00:00:00 2001 From: Roland Winklmeier Date: Sat, 11 Apr 2015 21:22:39 +0200 Subject: [PATCH] Set host application name for vatlib to "None". The idea is if you are an addon and running inside the simulator process you can put his name there. Since swift does (not yet) run as an addon, set it to "None" instead. --- src/blackcore/network_vatlib.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blackcore/network_vatlib.cpp b/src/blackcore/network_vatlib.cpp index 56190b540..559eb6e2e 100644 --- a/src/blackcore/network_vatlib.cpp +++ b/src/blackcore/network_vatlib.cpp @@ -72,7 +72,7 @@ namespace BlackCore m_net.reset(Vat_CreateNetworkSession(vatServerLegacyFsd, CProject::systemNameAndVersionChar(), CProject::versionMajor(), CProject::versionMinor(), - CProject::simulatorsChar(), CLIENT_PUBLIC_ID, CLIENT_PRIVATE_KEY, + "None", CLIENT_PUBLIC_ID, CLIENT_PRIVATE_KEY, clientCapabilities)); Vat_SetStateChangeHandler(m_net.data(), onConnectionStatusChanged, this);