STARK: Fix a wrong comment

This commit is contained in:
Douglas Liu
2018-07-15 23:44:07 +08:00
parent 25d17923be
commit 6b13449fd2
+1 -1
View File
@@ -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) {