aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction
diff options
context:
space:
mode:
authorNorbert Lange2009-08-16 16:39:34 +0000
committerNorbert Lange2009-08-16 16:39:34 +0000
commitc96affd0c1e5480fe1a4a3d3e82583c795570d21 (patch)
tree3f3a71bc02976024345c5c3e44534055d9c9c4cd /engines/parallaction
parent2b147c57161cdacf3cdc5bc572ce46160cbd6b5e (diff)
parentce30a513acdaab2ca5eacd136cc80ade1beabb3a (diff)
downloadscummvm-rg350-c96affd0c1e5480fe1a4a3d3e82583c795570d21.tar.gz
scummvm-rg350-c96affd0c1e5480fe1a4a3d3e82583c795570d21.tar.bz2
scummvm-rg350-c96affd0c1e5480fe1a4a3d3e82583c795570d21.zip
merge with trunk
svn-id: r43443
Diffstat (limited to 'engines/parallaction')
-rw-r--r--engines/parallaction/font.cpp2
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) {