(svn r23319) -Fix (r23316): Offsets of viewport signs were not scaled up.
This commit is contained in:
@@ -47,7 +47,7 @@ void Sign::UpdateVirtCoord()
|
||||
{
|
||||
Point pt = RemapCoords(this->x, this->y, this->z);
|
||||
SetDParam(0, this->index);
|
||||
this->sign.UpdatePosition(pt.x, pt.y - 6, STR_WHITE_SIGN);
|
||||
this->sign.UpdatePosition(pt.x, pt.y - 6 * ZOOM_LVL_BASE, STR_WHITE_SIGN);
|
||||
}
|
||||
|
||||
/** Update the coordinates of all signs */
|
||||
|
Reference in New Issue
Block a user