Remove non-matching comment from Lerp

Former-commit-id: 7c92358bf6
This commit is contained in:
Phillip Stephens 2022-08-13 14:44:29 -07:00
parent eb554f79dd
commit 97847d1d61
1 changed files with 0 additions and 1 deletions

View File

@ -44,7 +44,6 @@ CColor CColor::Lerp(const CColor& a, const CColor& b, float t) {
omt * a.GetAlpha() + t * b.GetAlpha()); omt * a.GetAlpha() + t * b.GetAlpha());
} }
/* non-matching https://decomp.me/scratch/WGIlL */
u32 CColor::Lerp(u32 a, u32 b, float t) { u32 CColor::Lerp(u32 a, u32 b, float t) {
u32 alpha = t * 256.f; u32 alpha = t * 256.f;