aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb
diff options
context:
space:
mode:
authorsluicebox2019-09-19 02:05:25 -0700
committersluicebox2019-09-19 02:05:25 -0700
commit52166aa3b158bc7a5a43bc5a7734f224295e77ca (patch)
tree001b4f12fd5946db56d157192d871a1501ff4589 /engines/hdb
parent0344e0adce3361f68c3ec0b92c86878e635e80ad (diff)
downloadscummvm-rg350-52166aa3b158bc7a5a43bc5a7734f224295e77ca.tar.gz
scummvm-rg350-52166aa3b158bc7a5a43bc5a7734f224295e77ca.tar.bz2
scummvm-rg350-52166aa3b158bc7a5a43bc5a7734f224295e77ca.zip
HDB: Fix missing semicolon
Diffstat (limited to 'engines/hdb')
-rw-r--r--engines/hdb/hdb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hdb/hdb.cpp b/engines/hdb/hdb.cpp
index bc780f66a5..1fc20efbd5 100644
--- a/engines/hdb/hdb.cpp
+++ b/engines/hdb/hdb.cpp
@@ -551,7 +551,7 @@ void HDBGame::moveMap(int x, int y) {
oy += (_dy - y) / 8;
ox = CLIP(ox, 0, g_hdb->_map->mapPixelWidth() - 240);
- oy = CLIP(oy, 0, g_hdb->_map->mapPixelHeight() - 320)
+ oy = CLIP(oy, 0, g_hdb->_map->mapPixelHeight() - 320);
g_hdb->_map->setMapXY(ox, oy);
}