mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-20 04:09:16 +00:00
Convert SDL (mostly) to plStrings
This commit is contained in:
@ -231,7 +231,7 @@ void plClothingSDLModifier::HandleSingleSDR(const plStateDataRecord *sdr, plClot
|
||||
int i;
|
||||
uint8_t tint[3];
|
||||
float tintScalar[3];
|
||||
if (!strcmp(sdr->GetDescriptor()->GetName(), kStrClothingDescName))
|
||||
if (sdr->GetDescriptor()->GetName() == kStrClothingDescName)
|
||||
{
|
||||
// get item from clothesItem
|
||||
plSimpleStateVariable* itemVar = sdr->FindVar(kStrItem);
|
||||
@ -284,7 +284,7 @@ void plClothingSDLModifier::HandleSingleSDR(const plStateDataRecord *sdr, plClot
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (!strcmp(sdr->GetDescriptor()->GetName(), kStrAppearanceDescName))
|
||||
else if (sdr->GetDescriptor()->GetName() == kStrAppearanceDescName)
|
||||
{
|
||||
// skin tints
|
||||
plSimpleStateVariable* skinVar = sdr->FindVar(kStrSkinTint);
|
||||
|
Reference in New Issue
Block a user