reel: remove obsolete FIXMEs

This commit is contained in:
nick black 2020-07-20 10:23:01 -04:00
parent 3166d0f233
commit 87ec38fce8
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

View File

@ -425,8 +425,7 @@ draw_following_tablets(const ncreel* nr, const nctablet* otherend){
if(working == otherend){
otherend = otherend->next;
}
}while(working->p); // FIXME might be more to hide
// FIXME keep going forward, hiding those no longer visible
}while(working->p);
return working;
}
@ -456,7 +455,6 @@ draw_previous_tablets(const ncreel* nr, const nctablet* otherend){
otherend = otherend->prev;
}
}
// FIXME keep going backwards, hiding those no longer visible
return upworking;
}