From 3a9f0866f09faa74ac96969ce7395c99175bb376 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Wed, 20 Dec 2023 03:08:42 +0100 Subject: [PATCH] Fix ColorF(Color) constructor --- color.d | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/color.d b/color.d index cc3539e..3561271 100644 --- a/color.d +++ b/color.d @@ -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; } ///