mirror of
https://github.com/kwsch/NHSE.git
synced 2026-08-23 11:06:02 -05:00
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:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user