Skip to content

Commit

Permalink
added missing T block
Browse files Browse the repository at this point in the history
  • Loading branch information
joric committed Jul 4, 2017
1 parent 625740b commit 57aaacf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S100App/Src/UI.c
Expand Up @@ -1870,7 +1870,7 @@ void createmap(void) {
map[j][i] = fmap[nextmap][j][i];
py = 0;
px = FIELD_W / 2;
nextmap = rnd(NUM_FIGURES - 1);
nextmap = rnd(NUM_FIGURES);
}

void clearscreen(void) {
Expand All @@ -1885,7 +1885,7 @@ void startgame(void) {
px = FIELD_W / 2;
py = 0;
score = 0;
nextmap = rnd(NUM_FIGURES-1);
nextmap = rnd(NUM_FIGURES);
createmap();
}

Expand Down

0 comments on commit 57aaacf

Please sign in to comment.