aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction
diff options
context:
space:
mode:
authorTorbjörn Andersson2009-08-15 14:13:48 +0000
committerTorbjörn Andersson2009-08-15 14:13:48 +0000
commit762d2dc03a7ae28dc49ad4e13720c4071cb6bae5 (patch)
tree3e55a7fe2c9ba84c9f2cb988871278de73a1ba19 /engines/parallaction
parent17e7f46501e2f133088b5c9ba1fd771ab79b4ba0 (diff)
downloadscummvm-rg350-762d2dc03a7ae28dc49ad4e13720c4071cb6bae5.tar.gz
scummvm-rg350-762d2dc03a7ae28dc49ad4e13720c4071cb6bae5.tar.bz2
scummvm-rg350-762d2dc03a7ae28dc49ad4e13720c4071cb6bae5.zip
Removed unnecessary semi-colons.
svn-id: r43409
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) {