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
This commit is contained in:
Marc Tiehuis 2018-11-18 21:48:47 +13:00 committed by GitHub
commit 850638e40b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -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);

View File

@ -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");