Skip to content

Commit

Permalink
Partial revert "Fixing memory pile up during intro movie"
Browse files Browse the repository at this point in the history
This reverts commit e6ca343.

# Conflicts:
#	Sources/Plasma/FeatureLib/pfMetalPipeline/plMetalPipeline.cpp
#	Sources/Plasma/FeatureLib/pfMetalPipeline/plMetalPipeline.h
  • Loading branch information
colincornaby committed Feb 18, 2023
1 parent b66677d commit fd6f501
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Sources/Plasma/PubUtilLib/plNetClientComm/plNetClientComm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1003,8 +1003,8 @@ void NetCommSetAccountUsernamePassword (

//============================================================================
void NetCommSetAuthTokenAndOS (
char16_t authToken[],
char16_t os[]
const char16_t* authToken,
const char16_t* os
) {
if (authToken)
StrCopy(s_iniAuthToken, authToken, std::size(s_iniAuthToken));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ bool NetCommIsLoginComplete ();
void NetCommSetIniPlayerId(unsigned playerId);
void NetCommSetIniStartUpAge(const ST::string& ageName);
void NetCommSetAccountUsernamePassword (const ST::string& username, const ShaDigest & namePassHash);
void NetCommSetAuthTokenAndOS (char16_t authToken[], char16_t os[]);
void NetCommSetAuthTokenAndOS (const char16_t* authToken, const char16_t* os);
ENetError NetCommGetAuthResult ();

bool NetCommNeedToLoadAvatar ();
Expand Down

0 comments on commit fd6f501

Please sign in to comment.