Skip to content

Commit

Permalink
Merge pull request #727 from Nopey/text_arenaselect
Browse files Browse the repository at this point in the history
Tweak vs arena select text_render size to fit Fire Pit description
  • Loading branch information
Nopey authored Nov 2, 2024
2 parents 95b33e5 + e2952dc commit ef48afa
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 ef48afa

Please sign in to comment.