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() {
151
151
}
152
152
153
153
void OLEDDisplayUi::switchToFrame (uint8_t frame) {
154
- if (frame >= this ->frameCount ) return
154
+ if (frame >= this ->frameCount ) return ;
155
155
this ->state .ticksSinceLastStateSwitch = 0 ;
156
156
if (frame == this ->state .currentFrame ) return ;
157
157
this ->state .frameState = FIXED;
@@ -160,7 +160,7 @@ void OLEDDisplayUi::switchToFrame(uint8_t frame) {
160
160
}
161
161
162
162
void OLEDDisplayUi::transitionToFrame (uint8_t frame) {
163
- if (frame >= this ->frameCount ) return
163
+ if (frame >= this ->frameCount ) return ;
164
164
this ->state .ticksSinceLastStateSwitch = 0 ;
165
165
if (frame == this ->state .currentFrame ) return ;
166
166
this ->nextFrameNumber = frame;
You can’t perform that action at this time.
0 commit comments