Skip to content

Commit 8a33481

Browse files
committed
fixed score text
1 parent ffdce92 commit 8a33481

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

game/screens/qubo_screen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace Screens {
2222
exit(1);
2323
}
2424

25-
SDL_Surface* score_text_surface = TTF_RenderText_Solid(this->font, "QUBO Score", this->text_color);
25+
SDL_Surface* score_text_surface = TTF_RenderText_Solid(this->font, "Score", this->text_color);
2626
this->score_text_texture = SDL_CreateTextureFromSurface(render, score_text_surface);
2727
this->score_text_shape = SDL_Rect{20, 20, score_text_surface->w, score_text_surface->h};
2828
SDL_FreeSurface(score_text_surface);

0 commit comments

Comments
 (0)