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

Fix several format errors detected via vararg-template voodoo

This commit is contained in:
2013-12-16 18:36:34 -08:00
parent 09cc4b8259
commit 56507c5219
7 changed files with 14 additions and 10 deletions

View File

@ -331,7 +331,7 @@ void plSceneNode::IRemovePhysical(plPhysical* p)
{
char buf[256];
sprintf(buf, "Trying to remove physical %s from scenenode %s,\nbut it's actually in %s",
p->GetKeyName(), GetKeyName(), oldNodeKey->GetName());
p->GetKeyName().c_str(), GetKeyName().c_str(), oldNodeKey->GetName().c_str());
hsAssert(0, buf);
}
}