1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-25 22:53:19 +00:00

rogueviz::smoothcam:: fixup to current_segment

This commit is contained in:
Zeno Rogue 2021-04-04 23:37:52 +02:00
parent 639eea08a2
commit e1b0982e89

View File

@ -233,7 +233,7 @@ void show() {
labels.clear();
for(auto& anim: anims) {
dialog::addSelItem("segment #" + its(aid) + (anim == &current_segment ? "*" : ""), fts(anim.start_interval), key++);
dialog::addSelItem("segment #" + its(aid) + (&anim == current_segment ? "*" : ""), fts(anim.start_interval), key++);
dialog::add_action_push([aid] { edit_segment(aid); });
int id = 0;
for(auto& f: anim.frames) {