aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/driver_vga.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/driver_vga.cpp')
-rw-r--r--engines/gob/driver_vga.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/driver_vga.cpp b/engines/gob/driver_vga.cpp
index 0df7302d7d..b5237430dc 100644
--- a/engines/gob/driver_vga.cpp
+++ b/engines/gob/driver_vga.cpp
@@ -74,7 +74,7 @@ void VGAVideoDriver::drawLetter(unsigned char item, int16 x, int16 y,
byte *src, *dst;
uint16 data;
- src = ((byte *) fontDesc->dataPtr) +
+ src = fontDesc->dataPtr +
(item - fontDesc->startItem) * (fontDesc->itemSize & 0xFF);
dst = dest->getVidMem() + x + dest->getWidth() * y;