From 52166aa3b158bc7a5a43bc5a7734f224295e77ca Mon Sep 17 00:00:00 2001 From: sluicebox Date: Thu, 19 Sep 2019 02:05:25 -0700 Subject: HDB: Fix missing semicolon --- engines/hdb/hdb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/hdb/hdb.cpp') 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); } -- cgit v1.2.3