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:
@ -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 );
|
||||||
|
Reference in New Issue
Block a user