[Scummvm-git-logs] scummvm master -> 52166aa3b158bc7a5a43bc5a7734f224295e77ca

sluicebox 22204938+sluicebox at users.noreply.github.com
Thu Sep 19 11:06:06 CEST 2019


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
52166aa3b1 HDB: Fix missing semicolon


Commit: 52166aa3b158bc7a5a43bc5a7734f224295e77ca
    https://github.com/scummvm/scummvm/commit/52166aa3b158bc7a5a43bc5a7734f224295e77ca
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2019-09-19T02:05:25-07:00

Commit Message:
HDB: Fix missing semicolon

Changed paths:
    engines/hdb/hdb.cpp


diff --git a/engines/hdb/hdb.cpp b/engines/hdb/hdb.cpp
index bc780f6..1fc20ef 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);
 }





More information about the Scummvm-git-logs mailing list