From e0e5b12c204f54822ce8cbbab618f5b7db8dcd5a Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Thu, 11 Jul 2024 00:25:23 +0200 Subject: [PATCH] Fixed wrong parameter in Image --- HPPH/Images/Image.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HPPH/Images/Image.cs b/HPPH/Images/Image.cs index 92ccf27..109bc03 100644 --- a/HPPH/Images/Image.cs +++ b/HPPH/Images/Image.cs @@ -201,7 +201,7 @@ public sealed class Image : 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;