From c6e2e0add29b6d24949f3e954bacf8cc524fd361 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 23 Aug 2023 18:26:42 +0200 Subject: [PATCH] - fix compilation --- src/common/textures/formats/webptexture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/textures/formats/webptexture.cpp b/src/common/textures/formats/webptexture.cpp index 696bef71a..4a3233c9e 100644 --- a/src/common/textures/formats/webptexture.cpp +++ b/src/common/textures/formats/webptexture.cpp @@ -97,7 +97,7 @@ FWebPTexture::FWebPTexture(int lumpnum, int w, int h, int xoff, int yoff) PalettedPixels FWebPTexture::CreatePalettedPixels(int conversion, int frame) { FBitmap bitmap; - bitmap.Create(Width, Height, frame); + bitmap.Create(Width, Height); CopyPixels(&bitmap, conversion); const uint8_t *data = bitmap.GetPixels();