1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 03:09:13 +00:00

Merge pull request #466 from dpogue/bugfixes

Bugfixes
This commit is contained in:
2015-01-03 16:41:47 -08:00
2 changed files with 4 additions and 3 deletions

View File

@ -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) {}

View File

@ -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