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

Fix broken plString format

This commit is contained in:
2013-12-05 01:36:23 -05:00
parent 4bf90877a8
commit fd16a12c34

View File

@ -1003,7 +1003,7 @@ plDynamicTextMap *plLayerConverter::ICreateDynTextMap( const plString &layerN
// Need a unique key name for every layer that uses one. We could also key // Need a unique key name for every layer that uses one. We could also key
// off of width and height, but layerName should be more than plenty // off of width and height, but layerName should be more than plenty
plString texName = plString::Format( "%s_dynText", layerName ); plString texName = plString::Format( "%s_dynText", layerName.c_str() );
// Does it already exist? // Does it already exist?
key = node->FindPageKey( plDynamicTextMap::Index(), texName ); key = node->FindPageKey( plDynamicTextMap::Index(), texName );