diff --git a/src/render.c b/src/render.c index 97be181..0c27419 100644 --- a/src/render.c +++ b/src/render.c @@ -359,7 +359,7 @@ void render_end_screen(int is_victory, int kills, int items, int damage_dealt, i // Title const char *title = is_victory ? "YOU ESCAPED!" : "GAME OVER"; - int title_font_size = is_victory ? 60 : 60; + int title_font_size = 60; Color title_color = is_victory ? GOLD : RED; int title_width = MeasureText(title, title_font_size); DrawText(title, (SCREEN_WIDTH - title_width) / 2, 30, title_font_size, title_color);