Fixed indentation

dev-time-step
krzys-h 2016-04-03 20:29:55 +02:00
parent 6216daedb3
commit 15702ec856
1 changed files with 11 additions and 11 deletions

View File

@ -77,35 +77,35 @@ void PlayerApperance::DefPerso()
} }
void PlayerApperance::DefHairColor() void PlayerApperance::DefHairColor()
{ {
if (this->face == 0) // normal ? if (this->face == 0) // normal ?
{ {
this->colorHair.r = 90.0f / 256.0f; this->colorHair.r = 90.0f / 256.0f;
this->colorHair.g = 95.0f / 256.0f; this->colorHair.g = 95.0f / 256.0f;
this->colorHair.b = 85.0f / 256.0f; // black this->colorHair.b = 85.0f / 256.0f; // black
} }
if (this->face == 1) // bald ? if (this->face == 1) // bald ?
{ {
this->colorHair.r = 74.0f / 256.0f; this->colorHair.r = 74.0f / 256.0f;
this->colorHair.g = 58.0f / 256.0f; this->colorHair.g = 58.0f / 256.0f;
this->colorHair.b = 46.0f / 256.0f; // brown this->colorHair.b = 46.0f / 256.0f; // brown
} }
if (this->face == 2) // carlos ? if (this->face == 2) // carlos ?
{ {
this->colorHair.r = 70.0f / 256.0f; this->colorHair.r = 70.0f / 256.0f;
this->colorHair.g = 40.0f / 256.0f; this->colorHair.g = 40.0f / 256.0f;
this->colorHair.b = 9.0f / 256.0f; // brown this->colorHair.b = 9.0f / 256.0f; // brown
} }
if (this->face == 3) // blond ? -> ginger ? if (this->face == 3) // blond ? -> ginger ?
{ {
this->colorHair.r = 74.0f / 256.0f; this->colorHair.r = 74.0f / 256.0f;
this->colorHair.g = 16.0f / 256.0f; this->colorHair.g = 16.0f / 256.0f;
this->colorHair.b = 0.0f / 256.0f; // yellow, changed to ginger this->colorHair.b = 0.0f / 256.0f; // yellow, changed to ginger
}
this->colorHair.a = 0.0f;
} }
this->colorHair.a = 0.0f;
}
CPlayerProfile::CPlayerProfile(std::string playerName) CPlayerProfile::CPlayerProfile(std::string playerName)
{ {