mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-17 10:52:46 +00:00
Toss lots of custom CString code
We already have a C standard library, so let's not reimplement it.
This commit is contained in:
@ -849,12 +849,12 @@ protected:
|
||||
|
||||
void ISetUserType(plMaxNode* node, const char* userType)
|
||||
{
|
||||
if( hsStrEQ( userType, kUseParamBlockNodeString ) )
|
||||
if( strcmp( userType, kUseParamBlockNodeString ) == 0 )
|
||||
{
|
||||
ISetNodeValue(nil);
|
||||
fPB->SetValue(fTypeID, 0, plAnimObjInterface::kUseParamBlockNode);
|
||||
}
|
||||
else if( hsStrEQ(userType, kUseOwnerNodeString ) )
|
||||
else if( strcmp(userType, kUseOwnerNodeString ) == 0 )
|
||||
{
|
||||
ISetNodeValue(nil);
|
||||
fPB->SetValue(fTypeID, 0, plAnimObjInterface::kUseOwnerNode);
|
||||
|
Reference in New Issue
Block a user