diff --git a/src/ImageSharp/Colors/Color.cs b/src/ImageSharp/Colors/Color.cs index edd0fd0f09..c4ea2d7623 100644 --- a/src/ImageSharp/Colors/Color.cs +++ b/src/ImageSharp/Colors/Color.cs @@ -70,7 +70,7 @@ namespace ImageSharp } // Order parsed from hex string will be backwards, so reverse it. - packedValue = Pack(A, B, G, R); + this.packedValue = Pack(this.A, this.B, this.G, this.R); } /// @@ -242,7 +242,7 @@ namespace ImageSharp /// A hexadecimal string representation of the value. public string ToHex() { - uint hexOrder = Pack(A, B, G, R); + uint hexOrder = Pack(this.A, this.B, this.G, this.R); return hexOrder.ToString("X8"); }