Change sea acre naming for combobox

'B' for bottom is the same as 'B' for Row2; just use directional arrows instead.

not using unicode arrows
This commit is contained in:
Kurt
2020-05-20 20:26:04 -07:00
parent 0e70d823a5
commit febcc4e024

View File

@@ -34,8 +34,8 @@ public static AcreCoordinate[] GetGridWithExterior(int width, int height)
{
for (int x = 0; x < width; x++)
{
var xn = (x == 0) ? 'L' : x == width - 1 ? 'R' : (char)('0' + x - 1);
var yn = (y == 0) ? 'T' : y == height - 1 ? 'B' : (char)('A' + y - 1);
var xn = (x == 0) ? '<' : x == width - 1 ? '>' : (char)('0' + x - 1);
var yn = (y == 0) ? '^' : y == height - 1 ? 'V' : (char)('A' + y - 1);
result[i++] = new AcreCoordinate(xn, yn, x, y);
}
}