designated init in Color header

This commit is contained in:
Honkazel 2025-04-08 19:04:40 +05:00
parent 0cca341d68
commit c980c7e463

View file

@ -34,7 +34,7 @@ namespace Hyprgraphics {
// per-component division
XYZ operator/(const XYZ& other) const {
return {x / other.x, y / other.y, z / other.z};
return {.x = x / other.x, .y = y / other.y, .z = z / other.z};
}
};