Increment scores

This commit is contained in:
Neale Pickett 2013-03-27 21:02:14 -06:00
parent 6af58a95a7
commit b0eab39a46
1 changed files with 8 additions and 0 deletions

8
main.c
View File

@ -238,6 +238,14 @@ update_controller()
jam_clock = 1;
}
}
if (val & BTN_LEFT) {
score_a += 1;
}
if (val & BTN_RIGHT) {
score_b += 1;
}
}
/*