mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 19:29:09 +00:00
fix for g++:
fix plVault LogMsg calls + remove useless wide char usage fix usage of plAvatarMgr::FindAvatar() and plLinkEffectsTriggerMsg::SetLinkKey() with temporary variables plNetServerSessionInfo.h need std::string fix plProgressMgr.h: NumLoadingFrames() have an useless class context information fix plSocket usage of non-standard NULL
This commit is contained in:
@ -272,7 +272,7 @@ void plLinkEffectsTriggerMsg::WriteVersion(hsStream* s, hsResMgr* mgr)
|
||||
mgr->WriteKey(s, fLinkInAnimKey);
|
||||
}
|
||||
|
||||
void plLinkEffectsTriggerMsg::SetLinkKey(plKey &key)
|
||||
void plLinkEffectsTriggerMsg::SetLinkKey(const plKey &key)
|
||||
{
|
||||
fLinkKey = key;
|
||||
}
|
||||
@ -429,4 +429,4 @@ void plPseudoLinkAnimCallbackMsg::Write(hsStream* stream, hsResMgr* mgr)
|
||||
{
|
||||
plMessage::IMsgWrite(stream,mgr);
|
||||
mgr->WriteKey(stream, fAvatarKey);
|
||||
}
|
||||
}
|
||||
|
@ -150,7 +150,7 @@ public:
|
||||
void SetLeavingAge(bool leaving) { fLeavingAge = leaving; }
|
||||
bool IsLeavingAge() { return fLeavingAge; }
|
||||
|
||||
void SetLinkKey(plKey &key);
|
||||
void SetLinkKey(const plKey &key);
|
||||
const plKey GetLinkKey() const { return fLinkKey; }
|
||||
|
||||
void SetLinkInAnimKey(plKey &key);
|
||||
|
Reference in New Issue
Block a user