1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

Small RGB.NET update

This commit is contained in:
Darth Affe 2021-02-25 00:30:25 +01:00
parent 528d082e62
commit 2e859bc84c

View File

@ -29,7 +29,7 @@ namespace Artemis.Core
#region Methods
/// <inheritdoc />
protected override Color GetColor(ReadOnlySpan<byte> pixel) => new(pixel[0], pixel[1], pixel[2]);
protected override Color GetColor(in ReadOnlySpan<byte> pixel) => new(pixel[0], pixel[1], pixel[2]);
#endregion
}