diff options
author | Johannes Schickel | 2010-08-02 22:28:30 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-08-02 22:28:30 +0000 |
commit | 4e33b7a3befbc4d14cdb57ac8da8c205ca724cb0 (patch) | |
tree | a758f8c19a3d1c12822c1f979c0409a4071ca8ab /graphics | |
parent | 0dba655085e3c5f025ae111be4929d5a9250d95a (diff) | |
download | scummvm-rg350-4e33b7a3befbc4d14cdb57ac8da8c205ca724cb0.tar.gz scummvm-rg350-4e33b7a3befbc4d14cdb57ac8da8c205ca724cb0.tar.bz2 scummvm-rg350-4e33b7a3befbc4d14cdb57ac8da8c205ca724cb0.zip |
GRAPHICS: Renamed skipThumbnailHeader to skipThumbnail.
svn-id: r51668
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/thumbnail.cpp | 2 | ||||
-rw-r--r-- | graphics/thumbnail.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/graphics/thumbnail.cpp b/graphics/thumbnail.cpp index 4c8ce289cf..ccde78806d 100644 --- a/graphics/thumbnail.cpp +++ b/graphics/thumbnail.cpp @@ -82,7 +82,7 @@ bool checkThumbnailHeader(Common::SeekableReadStream &in) { return hasHeader; } -bool skipThumbnailHeader(Common::SeekableReadStream &in) { +bool skipThumbnail(Common::SeekableReadStream &in) { uint32 position = in.pos(); ThumbnailHeader header; diff --git a/graphics/thumbnail.h b/graphics/thumbnail.h index b3fdb70b95..0465173364 100644 --- a/graphics/thumbnail.h +++ b/graphics/thumbnail.h @@ -39,11 +39,11 @@ namespace Graphics { bool checkThumbnailHeader(Common::SeekableReadStream &in); /** - * Skips a thumbnail header, if present. + * Skips a thumbnail, if present. * * @param in stream to process */ -bool skipThumbnailHeader(Common::SeekableReadStream &in); +bool skipThumbnail(Common::SeekableReadStream &in); /** * Lodas a thumbnail from the given input stream. |