Skip to content

Commit

Permalink
HDB: Fix missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
sluicebox committed Sep 19, 2019
1 parent 0344e0a commit 52166aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/hdb/hdb.cpp
Expand Up @@ -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);
}
Expand Down

0 comments on commit 52166aa

Please sign in to comment.