From 6b13449fd2154b84a178410118b036ffe02e2b9b Mon Sep 17 00:00:00 2001 From: Douglas Liu Date: Sun, 15 Jul 2018 23:44:07 +0800 Subject: [PATCH] STARK: Fix a wrong comment --- engines/stark/resources/image.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/stark/resources/image.cpp b/engines/stark/resources/image.cpp index 7190e1e055f..2ee0182b2fb 100644 --- a/engines/stark/resources/image.cpp +++ b/engines/stark/resources/image.cpp @@ -153,7 +153,7 @@ Common::Point Image::getHotspotPosition(uint index) const { Polygon polygon = _polygons[index]; - // Return the top-right point as the hotspot + // Return the top-middle point as the hotspot int right = polygon[0].x, top = polygon[0].y; for (uint i = 1; i < polygon.size(); ++i) {