Remove non-matching comment from Lerp

Former-commit-id: 7c92358bf67a30cbb6ba4790c946fafa2749a3a4
This commit is contained in:
Phillip Stephens 2022-08-13 14:44:29 -07:00
parent eb554f79dd
commit 97847d1d61

View File

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