Skip to content

Commit a9074f7

Browse files
committed
More style fixes
1 parent 89b2788 commit a9074f7

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

shared-module/_pew/PewPew.c

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,13 @@ static uint8_t pewpew_tc_index = 0xff;
4343

4444

4545
void pewpew_interrupt_handler(uint8_t index) {
46-
if (index != pewpew_tc_index) return;
46+
if (index != pewpew_tc_index) {
47+
return;
48+
}
4749
Tc* tc = tc_insts[index];
48-
if (!tc->COUNT16.INTFLAG.bit.MC0) return;
50+
if (!tc->COUNT16.INTFLAG.bit.MC0) {
51+
return;
52+
}
4953

5054
pew_tick();
5155

0 commit comments

Comments
 (0)