(map, draw_map, MAP_HIGH): New map command flag `h' to highlight own

sectors; from Marc Olzheim.
This commit is contained in:
Markus Armbruster 2004-01-21 14:54:56 +00:00
parent 727be2e126
commit f841200923
4 changed files with 28 additions and 1 deletions

View file

@ -118,6 +118,10 @@ map(void)
case 'P':
map_flags |= MAP_PLANE;
break;
case 'h':
case 'H':
map_flags |= MAP_HIGH;
break;
case '*':
map_flags |= MAP_ALL;
break;