Merge pull request #24 from pedroferreiramamede/update-high-score

Update the Hi Score and Score at the same time when you hit the Hi Score
master
Marc Tiehuis 6 years ago committed by GitHub
commit 850638e40b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      src/gfx_curses.c
  2. 3
      src/gfx_terminal.c

@ -66,6 +66,9 @@ void gfx_draw(struct gfx_state *s, struct gamestate *g)
else
mvwprintw(s->window, 0, 0, "Score: %d\n", g->score);
if (g->score >= g->score_high)
g->score_high = g->score;
mvwprintw(s->window, 1, 0, " Hi: %d\n", g->score_high);
wattron(s->window, A_DIM);

@ -41,6 +41,9 @@ void gfx_draw(struct gfx_state *s, struct gamestate *g)
else
printf("Score: %ld\n", g->score);
if (g->score >= g->score_high)
g->score_high = g->score;
printf(" Hi: %ld\n", g->score_high);
iterate((g->print_width + 2) * g->opts->grid_width + 1, printf("-")); printf("\n");

Loading…
Cancel
Save