1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-02-02 12:19:18 +00:00

ads-game:: do not view_proper_times for particles

This commit is contained in:
Zeno Rogue 2022-09-12 14:57:00 +02:00
parent d5251664cb
commit 7c87df85ac

View File

@ -119,7 +119,7 @@ void draw_game_cell(cell *cs, ads_matrix V, ld plev) {
rock.type == oParticle ? rock.col : rock.type == oParticle ? rock.col :
0x000000FF, rock.col, PPR::LINE); 0x000000FF, rock.col, PPR::LINE);
if(view_proper_times) { if(view_proper_times && rock.type != oParticle) {
string str = format(tformat, rock.pt_main.shift / TAU); string str = format(tformat, rock.pt_main.shift / TAU);
queuestr(shiftless(rgpushxto0(rock.pt_main.h)), .1, str, 0xFFFFFF, 8); queuestr(shiftless(rgpushxto0(rock.pt_main.h)), .1, str, 0xFFFFFF, 8);
} }