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

More plFormat -- some may make minor changes to certain debug output

(mostly regarding bools)
This commit is contained in:
2014-05-24 23:54:00 -07:00
parent 281f95638d
commit 48ca0fde19
6 changed files with 25 additions and 28 deletions

View File

@ -122,8 +122,5 @@ void plSpawnPointInfo::Reset()
plString plSpawnPointInfo::AsString() const
{
return plString::Format( "t:%s,n:%s,c:%s",
fTitle.c_str("(nil)"),
fSpawnPt.c_str("(nil)"),
fCameraStack.c_str("(nil)") );
return plFormat("t:{},n:{},c:{}", fTitle, fSpawnPt, fCameraStack);
}