Browse Source

Merge pull request #466 from dpogue/bugfixes

Bugfixes
Michael Hansen 10 years ago
parent
commit
e7a076b247
  1. 3
      Sources/Plasma/NucleusLib/pnNetCommon/plNetGroup.h
  2. 4
      Sources/Plasma/PubUtilLib/plSDL/plStateVariable.cpp

3
Sources/Plasma/NucleusLib/pnNetCommon/plNetGroup.h

@ -57,7 +57,8 @@ private:
plLocation fId;
uint8_t fFlags;
std::string fDesc; // description of room
plString fDesc; // description of room
public:
plNetGroupId() : fFlags(0) {}

4
Sources/Plasma/PubUtilLib/plSDL/plStateVariable.cpp

@ -1791,7 +1791,7 @@ bool plSimpleStateVariable::IWriteData(hsStream* s, float timeConvert, int idx,
{
// hsAssert(false, "plSimpleStateVariable::WriteData doesn't contain data?");
plNetApp::StaticWarningMsg("plSimpleStateVariable::WriteData Var %s doesn't contain data?",
GetName());
GetName().c_str());
}
#endif
@ -1961,7 +1961,7 @@ bool plSimpleStateVariable::WriteData(hsStream* s, float timeConvert, uint32_t w
{
// hsAssert(false, "plSimpleStateVariable::WriteData Var doesn't contain data?");
plNetApp::StaticWarningMsg("plSimpleStateVariable::WriteData Var %s doesn't contain data?",
GetName());
GetName().c_str());
}
#endif

Loading…
Cancel
Save