diff options
author | Christoph Mallon | 2011-08-07 14:35:01 +0200 |
---|---|---|
committer | Christoph Mallon | 2011-08-07 15:19:09 +0200 |
commit | e35b4f20c1041b13361aa2ebc4e758873bb1cee3 (patch) | |
tree | b07e8cc3f161fb91f7220d94f24f264cfd13b788 /graphics/thumbnail.h | |
parent | b4b6ce0954f4a636be0b7b88197376b3917af31f (diff) | |
download | scummvm-rg350-e35b4f20c1041b13361aa2ebc4e758873bb1cee3.tar.gz scummvm-rg350-e35b4f20c1041b13361aa2ebc4e758873bb1cee3.tar.bz2 scummvm-rg350-e35b4f20c1041b13361aa2ebc4e758873bb1cee3.zip |
GRAPHICS: Simplify the interface of Graphics::loadThumbnail().
Now it returns the Surface, so the caller does not need to create one and pass it.
Diffstat (limited to 'graphics/thumbnail.h')
-rw-r--r-- | graphics/thumbnail.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/thumbnail.h b/graphics/thumbnail.h index 452125cb47..babc35bd5f 100644 --- a/graphics/thumbnail.h +++ b/graphics/thumbnail.h @@ -53,7 +53,7 @@ bool skipThumbnail(Common::SeekableReadStream &in); * The loaded thumbnail will be automatically converted to the * current overlay pixelformat. */ -bool loadThumbnail(Common::SeekableReadStream &in, Graphics::Surface &to); +Graphics::Surface* loadThumbnail(Common::SeekableReadStream &in); /** * Saves a thumbnail to the given write stream. |