Browse Source

Fix CCR Petition Stub

Adam Johnson 10 years ago
parent
commit
9f88e3de2e
  1. 4
      Sources/Plasma/PubUtilLib/plNetClient/plNetClientMgrSend.cpp
  2. 2
      Sources/Plasma/PubUtilLib/plNetGameLib/Private/plNglAuth.cpp
  3. 2
      Sources/Plasma/PubUtilLib/plNetGameLib/Private/plNglAuth.h

4
Sources/Plasma/PubUtilLib/plNetClient/plNetClientMgrSend.cpp

@ -171,9 +171,7 @@ void plNetClientMgr::ISendCCRPetition(plCCRPetitionMsg* petMsg)
buf.resize( size ); buf.resize( size );
ram.CopyToMem( (void*)buf.data() ); ram.CopyToMem( (void*)buf.data() );
wchar_t * wStr = StrDupToUnicode(buf.c_str()); NetCliAuthSendCCRPetition(buf.c_str());
NetCliAuthSendCCRPetition(wStr);
free(wStr);
} }
// //

2
Sources/Plasma/PubUtilLib/plNetGameLib/Private/plNglAuth.cpp

@ -5762,7 +5762,7 @@ void NetCliAuthSetRecvBufferHandler (
//============================================================================ //============================================================================
void NetCliAuthSendCCRPetition ( void NetCliAuthSendCCRPetition (
const wchar_t * petitionText const plString& petitionText
) { ) {
hsAssert(false, "eric, implement me."); hsAssert(false, "eric, implement me.");
} }

2
Sources/Plasma/PubUtilLib/plNetGameLib/Private/plNglAuth.h

@ -575,7 +575,7 @@ void NetCliAuthChangePlayerNameRequest (
// CCRPetition // CCRPetition
//============================================================================ //============================================================================
void NetCliAuthSendCCRPetition ( void NetCliAuthSendCCRPetition (
const wchar_t * petitionText const plString& petitionText
); );
//============================================================================ //============================================================================

Loading…
Cancel
Save