1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-02-22 22:10:20 +00:00

ads-game:: don't display proper time of history ships even though view_proper_times is off

This commit is contained in:
Zeno Rogue 2022-09-29 11:40:21 +02:00
parent 293c271c7f
commit 3808d93a11

View File

@ -158,8 +158,10 @@ void draw_game_cell(const cell_to_draw& cd) {
curvepoint(pts[0]);
queuecurve(shiftless(Id), 0xFF, shipcolor, PPR::MONSTER_FOOT);
string str = format(tformat, (cr.shift + rock.start) / ads_time_unit);
queuestr(shiftless(rgpushxto0(cr.h)), .1, str, 0xC0C0C0, 8);
if(view_proper_times) {
string str = format(tformat, (cr.shift + rock.start) / ads_time_unit);
queuestr(shiftless(rgpushxto0(cr.h)), .1, str, 0xC0C0C0, 8);
}
}
if(paused && c == vctr_ship && !game_over) {