- fixed bad virtual override in FSheetTexture.

This commit is contained in:
Christoph Oelckers 2023-09-03 19:52:53 +02:00
commit ef8fd472a8
3 changed files with 4 additions and 4 deletions

View file

@ -110,7 +110,7 @@ public:
FHexFontChar(uint8_t *sourcedata, int swidth, int width, int height);
PalettedPixels CreatePalettedPixels(int conversion, int frame = 0) override;
int CopyPixels(FBitmap* bmp, int conversion, int frame = 0);
int CopyPixels(FBitmap* bmp, int conversion, int frame = 0) override;
protected:
int SourceWidth;
@ -191,7 +191,7 @@ public:
FHexFontChar2(uint8_t *sourcedata, int swidth, int width, int height);
PalettedPixels CreatePalettedPixels(int conversion, int frame = 0) override;
int CopyPixels(FBitmap* bmp, int conversion, int frame = 0);
int CopyPixels(FBitmap* bmp, int conversion, int frame = 0) override;
};