1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-10-18 06:30:41 +00:00

do not draw own ghost while replaying

This commit is contained in:
Zeno Rogue 2024-08-20 14:44:13 +02:00
parent 630bbe3945
commit f29104db50

View File

@ -77,7 +77,7 @@ void frame() {
if(g.history[s].timer < t) a = s + 1;
else b = s;
}
if(b < isize(g.history)) g.history[b].draw_unilcycle(V, g.cs);
if(b < isize(g.history) && g.history[b].where != curlev->current.where) g.history[b].draw_unilcycle(V, g.cs);
}
}
}