Правки

This commit is contained in:
BoiledMilk123 2024-04-07 22:54:04 +04:00
parent a917e654ef
commit 3dd21881b4

View File

@ -29,7 +29,7 @@ public class LocomotiveDepot : AbstractCompany
{ {
for (int j = 0; j < count_height + 1; ++j) for (int j = 0; j < count_height + 1; ++j)
{ {
g.DrawLine(pen, i * _placeSizeWidth + 10, j * _placeSizeHeight, i * _placeSizeWidth + _placeSizeWidth - 50, j * _placeSizeHeight); g.DrawLine(pen, i * _placeSizeWidth + 10, j * _placeSizeHeight + 1, i * _placeSizeWidth + _placeSizeWidth - 50, j * _placeSizeHeight+1);
g.DrawLine(pen, i * _placeSizeWidth + 10, j * _placeSizeHeight, i * _placeSizeWidth + 10, j * _placeSizeHeight + _placeSizeHeight); g.DrawLine(pen, i * _placeSizeWidth + 10, j * _placeSizeHeight, i * _placeSizeWidth + 10, j * _placeSizeHeight + _placeSizeHeight);
} }
} }