TheAssemblyArmada/Thyme

Values returned by Make_Color with constant arguments in InGameUI class can be constexpr

xezon opened this issue · 0 comments

xezon commented

Values returned by Make_Color with constant arguments in InGameUI class can be constexpr.

For example

int border_color = Make_Color(0, 0, 0, 255);

to

constexpr int border_color = Make_Color(0, 0, 0, 255);