Make DUNGEON_OVERVIEW unconditional.

This commit is contained in:
Sean Hunt
2015-02-13 23:58:46 -05:00
parent 1edadd1d48
commit ad82ca80f3
20 changed files with 5 additions and 94 deletions

View File

@@ -570,9 +570,7 @@ forget_map(howmuch)
levl[zx][zy].seenv = 0;
levl[zx][zy].waslit = 0;
levl[zx][zy].glyph = cmap_to_glyph(S_stone);
#ifdef DUNGEON_OVERVIEW
lastseentyp[zx][zy] = STONE;
#endif
}
}
@@ -633,9 +631,7 @@ forget_levels(percent)
count = ((count * percent) + 50) / 100;
for (i = 0; i < count; i++) {
level_info[indices[i]].flags |= FORGOTTEN;
#ifdef DUNGEON_OVERVIEW
forget_mapseen(indices[i]);
#endif
}
}