diff options
-rw-r--r-- | graphics/decoders/tga.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/graphics/decoders/tga.h b/graphics/decoders/tga.h index 8149014a24..dfdc5a4da9 100644 --- a/graphics/decoders/tga.h +++ b/graphics/decoders/tga.h @@ -57,9 +57,7 @@ public: TGADecoder(); virtual ~TGADecoder(); virtual void destroy(); - virtual const Surface *getSurface() const { - return &_surface; - } + 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); |