Update main.py
parent
1d9e951180
commit
be322c96ee
2
main.py
2
main.py
|
@ -93,7 +93,7 @@ def draw_text(text, font, text_col, x, y):
|
|||
# print best score
|
||||
def print_best_score(best_score):
|
||||
draw_text("Best score", font, TEXT_COL, 380, 150)
|
||||
for i, item in enumerate(best_score[::-1]):
|
||||
for i, item in enumerate(best_score):
|
||||
text = str(i+1)+". " + str(item)
|
||||
draw_text(text, smaller_font, TEXT_COL, 360, 220+i*40)
|
||||
|
||||
|
|
Loading…
Reference in New Issue