diff options
Diffstat (limited to 'engines/parallaction')
-rw-r--r-- | engines/parallaction/font.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/font.cpp b/engines/parallaction/font.cpp index 9207d24e29..daa74cc7dc 100644 --- a/engines/parallaction/font.cpp +++ b/engines/parallaction/font.cpp @@ -256,7 +256,7 @@ public: byte* getData(uint16 index) { assert(index < _numGlyphs); - return _data + (_height * _widths[index]) * index;; + return _data + (_height * _widths[index]) * index; } void getRect(uint16 index, Common::Rect &r) { |