Rama
(Rama)
70
You can clear any previous use of the delegate, before using it again, using code similar to this:
IOnlineSubsystem* OnlineSub = IOnlineSubsystem::Get();
if (OnlineSub)
{
IOnlineSessionPtr Sessions = OnlineSub->GetSessionInterface();
Sessions->**ClearOnStartSessionCompleteDelegate_Handle**(OnStartSessionCompleteDelegateHandle);
}
And the create your new use of the delegate afterward.
Good luck!
