Question about using FastLED.delay I've seen both show and delay used consecutively in programs,

Question about using FastLED.delay
I’ve seen both show and delay used consecutively in programs, such as in the Fire2012 example by @Mark_Kriegsman .


FastLED.show(); // display this frame
FastLED.delay(1000 / FRAMES_PER_SECOND);

This ends up calling show two times in a row, correct?
In this case should the normal show line be commented out if we’re going to use FastLED.delay?

I normally just use one or the other rather than both…

@Jeremy_Spencer Yes, that’s what I do too. Just wondering if there’s some case I’m not aware of where having both would be beneficial.