deobfuscated code, fixed warnings

This commit is contained in:
randogoth
2023-04-16 21:54:26 +03:00
parent 00541bd9c5
commit 432de34709
2 changed files with 33 additions and 30 deletions

View File

@@ -303,9 +303,9 @@ static void _coin_animation(toss_up_state_t *state) {
bool tails = false;
for (uint8_t i = 0; i < state->coin_num; i++) {
if (state->coins[i] == true) {
heads++;
heads = true;
} else {
tails++;
tails = true;
}
}
movement_request_tick_frequency(32);