aboutsummaryrefslogtreecommitdiff
path: root/image/codecs/msrle.h
diff options
context:
space:
mode:
Diffstat (limited to 'image/codecs/msrle.h')
-rw-r--r--image/codecs/msrle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/image/codecs/msrle.h b/image/codecs/msrle.h
index 10e3531c07..a65ef1c41d 100644
--- a/image/codecs/msrle.h
+++ b/image/codecs/msrle.h
@@ -38,7 +38,7 @@ public:
MSRLEDecoder(uint16 width, uint16 height, byte bitsPerPixel);
~MSRLEDecoder();
- const Graphics::Surface *decodeImage(Common::SeekableReadStream *stream);
+ const Graphics::Surface *decodeFrame(Common::SeekableReadStream &stream);
Graphics::PixelFormat getPixelFormat() const { return Graphics::PixelFormat::createFormatCLUT8(); }
private:
@@ -46,7 +46,7 @@ private:
Graphics::Surface *_surface;
- void decode8(Common::SeekableReadStream *stream);
+ void decode8(Common::SeekableReadStream &stream);
};
} // End of namespace Image