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:
Max Horn 2010-08-04 08:23:48 +00:00
parent 0eaa9bddb6
commit 154c589f18

View File

@ -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: