File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ void OLEDDisplayUi::previousFrame() {
151151}
152152
153153void OLEDDisplayUi::switchToFrame (uint8_t frame) {
154- if (frame >= this ->frameCount ) return
154+ if (frame >= this ->frameCount ) return ;
155155 this ->state .ticksSinceLastStateSwitch = 0 ;
156156 if (frame == this ->state .currentFrame ) return ;
157157 this ->state .frameState = FIXED;
@@ -160,7 +160,7 @@ void OLEDDisplayUi::switchToFrame(uint8_t frame) {
160160}
161161
162162void OLEDDisplayUi::transitionToFrame (uint8_t frame) {
163- if (frame >= this ->frameCount ) return
163+ if (frame >= this ->frameCount ) return ;
164164 this ->state .ticksSinceLastStateSwitch = 0 ;
165165 if (frame == this ->state .currentFrame ) return ;
166166 this ->nextFrameNumber = frame;
You can’t perform that action at this time.
0 commit comments