detailed turns-and-elapsed-time-by-branch information (PlaceInfo) not add up, causing an assertion when the savefile is loaded. Fixed simply by forcing the numbers to add up, since introducing innacuracies into this when debug testing shouldn't be a problem.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3093 c06c8d41-db1a-0410-9941-cceddc491573
5H5JARX75GLOKT6TMK5ZC6LA72I7EXUJMT7TJOSFJZOOQ4FTNSFAC // Elapsed time might not match up if explore had to go through// shallow water.PlaceInfo& pi = you.get_place_info();pi.elapsed_total = (pi.elapsed_explore + pi.elapsed_travel +pi.elapsed_interlevel + pi.elapsed_resting +pi.elapsed_other);PlaceInfo& pi2 = you.global_info;pi2.elapsed_total = (pi2.elapsed_explore + pi2.elapsed_travel +pi2.elapsed_interlevel + pi2.elapsed_resting +pi2.elapsed_other);