aboutsummaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorJohannes Schickel2012-08-29 15:58:55 +0200
committerJohannes Schickel2012-08-29 15:58:55 +0200
commitf189d8a541647506498b19a2b66138b6171000a3 (patch)
treed21207047a8acac6dbff03379edfe5eaba798b19 /graphics
parent933726a7e871fa9943cda9dc89cf91691a8f2ebf (diff)
downloadscummvm-rg350-f189d8a541647506498b19a2b66138b6171000a3.tar.gz
scummvm-rg350-f189d8a541647506498b19a2b66138b6171000a3.tar.bz2
scummvm-rg350-f189d8a541647506498b19a2b66138b6171000a3.zip
GRAPHICS: Remove extra semicolon.
Diffstat (limited to 'graphics')
-rw-r--r--graphics/decoders/tga.h2
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);