Fix ColorF(Color) constructor

This commit is contained in:
Elias Batek 2023-12-20 03:08:42 +01:00
parent 2229a1c249
commit 3a9f0866f0
1 changed files with 1 additions and 6 deletions

View File

@ -570,12 +570,7 @@ struct ColorF {
Constructs a FP color from an integer one
+/
public this(const Color integer) {
_components = [
r / 255.0f,
g / 255.0f,
b / 255.0f,
a / 255.0f,
];
_components[0.. 4] = integer.components[0 .. 4] / 255.0f;
}
///