aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/graphics/tga.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/graphics/tga.cpp')
-rw-r--r--engines/wintermute/graphics/tga.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wintermute/graphics/tga.cpp b/engines/wintermute/graphics/tga.cpp
index 1c0d73c6cd..1bf4383ccf 100644
--- a/engines/wintermute/graphics/tga.cpp
+++ b/engines/wintermute/graphics/tga.cpp
@@ -145,7 +145,7 @@ bool TGA::readData(Common::SeekableReadStream &tga, byte imageType, byte pixelDe
} else if (imageType == 3) {
_surface.create(_surface.w, _surface.h, _surface.format);
- byte *data = (byte *)_surface.pixels;
+ byte *data = (byte *)_surface.pixels;
uint32 count = _surface.w * _surface.h;
while (count-- > 0) {