1
0
mirror of https://git.zap.org.au/git/trader.git synced 2025-01-03 14:57:41 -05:00

Add the MAP_LAST enumeration constant

This commit is contained in:
John Zaitseff 2011-06-15 19:39:07 +10:00
parent ab6f936f3f
commit ced3697fe1

View File

@ -97,7 +97,8 @@ typedef enum map_val {
MAP_EMPTY = '.', // Empty space
MAP_OUTPOST = '+', // Unowned outpost
MAP_STAR = '*', // Star
MAP_A = 'A' // Company A, etc
MAP_A = 'A', // Company A, etc
MAP_LAST = MAP_A + MAX_COMPANIES - 1
} map_val_t;