Browse Source

Zweite Stelle des Scores in Array schreiben

main
fdai7103 2 years ago
parent
commit
b3fa2ab62b
  1. 3
      src/Paper-Bin.c

3
src/Paper-Bin.c

@ -201,6 +201,9 @@ void Generatefield() {
int tmp = ScorePoints; int tmp = ScorePoints;
field[12][1] = '0' + tmp % 10; field[12][1] = '0' + tmp % 10;
tmp /= 10;
field[11][1] = '0' + tmp % 10;
} }
void addScoreboard() void addScoreboard()

Loading…
Cancel
Save