Tracker: Remove unused rgb_color creation function.

Nothing seems to use it. make_color should be used instead.
This commit is contained in:
Augustin Cavalier 2022-04-25 20:52:43 -04:00
parent c6b6adc407
commit 457d8a9282

View File

@ -409,18 +409,6 @@ extern void DeleteSubmenu(BMenuItem* submenuItem);
extern bool BootedInSafeMode();
inline rgb_color
Color(int32 r, int32 g, int32 b, int32 alpha = 255)
{
rgb_color result;
result.red = (uchar)r;
result.green = (uchar)g;
result.blue = (uchar)b;
result.alpha = (uchar)alpha;
return result;
}
void PrintToStream(rgb_color color);
template <class InitCheckable>