aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/draw-manager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hdb/draw-manager.cpp')
-rw-r--r--engines/hdb/draw-manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hdb/draw-manager.cpp b/engines/hdb/draw-manager.cpp
index 4b48acb2b1..a5559a2736 100644
--- a/engines/hdb/draw-manager.cpp
+++ b/engines/hdb/draw-manager.cpp
@@ -281,7 +281,7 @@ Graphics::Surface Picture::load(Common::SeekableReadStream *stream) {
uint16 *ptr;
for (uint y = 0; y < _height; y++) {
- ptr = (uint16 *) _surface.getBasePtr(0, y);
+ ptr = (uint16 *)_surface.getBasePtr(0, y);
for (uint x = 0; x < _width; x++) {
*ptr = TO_LE_16(stream->readUint16LE());
ptr++;