Skip to content

Commit fd6f501

Browse files
committed
Partial revert "Fixing memory pile up during intro movie"
This reverts commit e6ca343. # Conflicts: # Sources/Plasma/FeatureLib/pfMetalPipeline/plMetalPipeline.cpp # Sources/Plasma/FeatureLib/pfMetalPipeline/plMetalPipeline.h
1 parent b66677d commit fd6f501

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Sources/Plasma/PubUtilLib/plNetClientComm/plNetClientComm.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1003,8 +1003,8 @@ void NetCommSetAccountUsernamePassword (
10031003

10041004
//============================================================================
10051005
void NetCommSetAuthTokenAndOS (
1006-
char16_t authToken[],
1007-
char16_t os[]
1006+
const char16_t* authToken,
1007+
const char16_t* os
10081008
) {
10091009
if (authToken)
10101010
StrCopy(s_iniAuthToken, authToken, std::size(s_iniAuthToken));

Sources/Plasma/PubUtilLib/plNetClientComm/plNetClientComm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ bool NetCommIsLoginComplete ();
117117
void NetCommSetIniPlayerId(unsigned playerId);
118118
void NetCommSetIniStartUpAge(const ST::string& ageName);
119119
void NetCommSetAccountUsernamePassword (const ST::string& username, const ShaDigest & namePassHash);
120-
void NetCommSetAuthTokenAndOS (char16_t authToken[], char16_t os[]);
120+
void NetCommSetAuthTokenAndOS (const char16_t* authToken, const char16_t* os);
121121
ENetError NetCommGetAuthResult ();
122122

123123
bool NetCommNeedToLoadAvatar ();

0 commit comments

Comments
 (0)