Fixed wrong parameter in Image

This commit is contained in:
Darth Affe 2024-07-11 00:25:23 +02:00
parent e020e460aa
commit e0e5b12c20

View File

@ -201,7 +201,7 @@ public sealed class Image<TColor> : IImage
#region Constructors
internal ImageRows(byte[] buffer, int x, int y, int width, int height, int stride, int bpp)
internal ImageRows(byte[] buffer, int x, int y, int width, int height, int stride)
{
this._buffer = buffer;
this._x = x;