Skip to content

Commit

Permalink
Tweak vs arena select text_render size to fit Fire Pit description
Browse files Browse the repository at this point in the history
  • Loading branch information
Nopey committed Nov 2, 2024
1 parent 95b33e5 commit e2952dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/game/scenes/vs.c
Original file line number Diff line number Diff line change
Expand Up @@ -282,11 +282,11 @@ void vs_render(scene *scene) {
video_draw(&local->arena_select_bg, 55, 150);

// arena name
text_render(&tconf_green, TEXT_DEFAULT, 56 + 72, 153, (211 - 72) - 4, 8, lang_get(56 + local->arena));
text_render(&tconf_green, TEXT_DEFAULT, 56 + 72, 152, (211 - 72), 8, lang_get(56 + local->arena));

tconf_green.valign = TEXT_MIDDLE;
// arena description
text_render(&tconf_green, TEXT_DEFAULT, 56 + 72, 153, (211 - 72) - 4, 50, lang_get(66 + local->arena));
text_render(&tconf_green, TEXT_DEFAULT, 56 + 72, 153, (211 - 72), 50, lang_get(66 + local->arena));
} else if(player2->pilot && player2->pilot->pilot_id == PILOT_KREISSACK &&
settings_get()->gameplay.difficulty < 2) {
// kreissack, but not on Veteran or higher
Expand Down

0 comments on commit e2952dc

Please sign in to comment.