diff --git a/include/gfx/color_set.hpp b/include/gfx/color_set.hpp index 3003e09a..c49d67c0 100644 --- a/include/gfx/color_set.hpp +++ b/include/gfx/color_set.hpp @@ -12,7 +12,7 @@ public: static constexpr size_t capacity = 4; private: - // Up to 4 colors, sorted, and where SIZE_MAX means the slot is empty + // Up to 4 colors, sorted, and where UINT16_MAX means the slot is empty // (OK because it's not a valid color index) // Sorting is done on the raw numerical values to lessen `compare`'s complexity std::array _colorIndices{UINT16_MAX, UINT16_MAX, UINT16_MAX, UINT16_MAX};