diff options
author | Johannes Schickel | 2012-08-29 15:58:55 +0200 |
---|---|---|
committer | Johannes Schickel | 2012-08-29 15:58:55 +0200 |
commit | f189d8a541647506498b19a2b66138b6171000a3 (patch) | |
tree | d21207047a8acac6dbff03379edfe5eaba798b19 /graphics/decoders | |
parent | 933726a7e871fa9943cda9dc89cf91691a8f2ebf (diff) | |
download | scummvm-rg350-f189d8a541647506498b19a2b66138b6171000a3.tar.gz scummvm-rg350-f189d8a541647506498b19a2b66138b6171000a3.tar.bz2 scummvm-rg350-f189d8a541647506498b19a2b66138b6171000a3.zip |
GRAPHICS: Remove extra semicolon.
Diffstat (limited to 'graphics/decoders')
-rw-r--r-- | graphics/decoders/tga.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/decoders/tga.h b/graphics/decoders/tga.h index e8dd2b8411..8149014a24 100644 --- a/graphics/decoders/tga.h +++ b/graphics/decoders/tga.h @@ -59,7 +59,7 @@ public: virtual void destroy(); virtual const Surface *getSurface() const { return &_surface; - }; + } virtual const byte *getPalette() const { return _colorMap; } virtual uint16 getPaletteColorCount() const { return _colorMapLength; } virtual bool loadStream(Common::SeekableReadStream &stream); |