mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-01 07:46:11 +00:00
GRAPHICS: Fix FlicDecoder::hasDirtyPalette signature
Add const qualifier to FlicDecoder::hasDirtyPalette to make it match that if VideoDecoder::hasDirtyPalette. svn-id: r51724
This commit is contained in:
parent
0eaa9bddb6
commit
154c589f18
@ -72,7 +72,7 @@ public:
|
||||
void copyDirtyRectsToBuffer(uint8 *dst, uint pitch);
|
||||
|
||||
byte *getPalette() { _paletteChanged = false; return _palette; }
|
||||
bool hasDirtyPalette() { return _paletteChanged; }
|
||||
bool hasDirtyPalette() const { return _paletteChanged; }
|
||||
void reset();
|
||||
|
||||
protected:
|
||||
|
Loading…
x
Reference in New Issue
Block a user