Skip to content

Commit

Permalink
Fix column name placement in lobby
Browse files Browse the repository at this point in the history
  • Loading branch information
tehKaiN committed Sep 18, 2022
1 parent 2c84d0b commit 94219e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libs/s25main/desktops/dskGameLobby.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,16 +128,16 @@ dskGameLobby::dskGameLobby(ServerType serverType, std::shared_ptr<GameLobby> gam
// "Volk"
AddText(12, DrawPoint(285, 40), _("Race"), COLOR_YELLOW, FontStyle::CENTER, NormalFont);
// "Farbe"
AddText(13, DrawPoint(355, 40), _("Color"), COLOR_YELLOW, FontStyle::CENTER, NormalFont);
AddText(13, DrawPoint(390, 40), _("Color"), COLOR_YELLOW, FontStyle::CENTER, NormalFont);
// "Team"
AddText(14, DrawPoint(405, 40), _("Team"), COLOR_YELLOW, FontStyle::CENTER, NormalFont);
AddText(14, DrawPoint(440, 40), _("Team"), COLOR_YELLOW, FontStyle::CENTER, NormalFont);

if(!IsSinglePlayer())
{
// "Bereit"
AddText(15, DrawPoint(465, 40), _("Ready?"), COLOR_YELLOW, FontStyle::CENTER, NormalFont);
AddText(15, DrawPoint(490, 40), _("Ready?"), COLOR_YELLOW, FontStyle::CENTER, NormalFont);
// "Ping"
AddText(16, DrawPoint(515, 40), _("Ping"), COLOR_YELLOW, FontStyle::CENTER, NormalFont);
AddText(16, DrawPoint(530, 40), _("Ping"), COLOR_YELLOW, FontStyle::CENTER, NormalFont);
}
// "Swap"
if(gameLobby_->isHost() && !gameLobby_->isSavegame())
Expand Down

0 comments on commit 94219e5

Please sign in to comment.