Fix potential bugs

This commit is contained in:
jacob.eva 2025-02-12 14:24:50 +00:00
parent 1d62fdd52e
commit a39357d332
No known key found for this signature in database
GPG key ID: 0B92E083BBCCAA1E
2 changed files with 5 additions and 5 deletions

View file

@ -39,7 +39,7 @@ void onInt1Rise() {
}
void setup_interfaces() {
onIntRise[0] = &onInt0Rise;
onIntRise[1] = &onInt1Rise;
onIntRise[0] = onInt0Rise;
onIntRise[1] = onInt1Rise;
}
#endif