mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 14:44:36 +00:00
Convert dStrcmp to String::compare for more cases
This commit is contained in:
parent
c999baf7ed
commit
197a62f6ea
22 changed files with 45 additions and 45 deletions
|
|
@ -538,7 +538,7 @@ VectorF VPath::getMountVelocity( const U32 &pIndex )
|
|||
void VPath::readFields( void )
|
||||
{
|
||||
const char *nodeData = "";
|
||||
for ( S32 nodeIndex = 0; dStrcmp( nodeData = getDataField( StringTable->insert( avar( "Node%d", nodeIndex ) ), NULL ), "" ) != 0; nodeIndex++ )
|
||||
for ( S32 nodeIndex = 0; String::compare( nodeData = getDataField( StringTable->insert( avar( "Node%d", nodeIndex ) ), NULL ), "" ) != 0; nodeIndex++ )
|
||||
{
|
||||
// Create Node.
|
||||
VPathNode *node = createNode();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue