Former-commit-id: 58eebfc1e9bfa9211a5acde5a65e75254c5904ea
This commit is contained in:
morden
2018-01-16 21:32:40 -05:00
parent 483ffd5f6b
commit ea77c18a2e
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ public class AdvancedSessions : ModuleRules
{
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
//bEnforceIWYU = true;
Definitions.Add("WITH_ADVANCED_SESSIONS=1");
PrivateIncludePaths.AddRange(new string[] { "AdvancedSessions/Private"/*, "OnlineSubsystemSteam/Private"*/ });

View File

@@ -427,7 +427,7 @@ void UAdvancedSessionsLibrary::GetPlayerName(APlayerController *PlayerController
if (APlayerState* PlayerState = (PlayerController != NULL) ? PlayerController->PlayerState : NULL)
{
PlayerName = PlayerState->PlayerName;
PlayerName = PlayerState->GetPlayerName();
return;
}
else