just a small change so that "all" is not needed in the language file

This commit is contained in:
Titus Tscharntke 2010-09-01 00:25:46 +00:00
parent ca49e0ba68
commit f07cbb13ad
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ MenuStateCustomGame::MenuStateCustomGame(Program *program, MainMenu *mainMenu, b
labelMapFilter.init(xoffset+310, mapHeadPos);
labelMapFilter.setText(lang.get("MapFilter")+":");
listBoxMapFilter.init(xoffset+310, mapPos, 80);
listBoxMapFilter.pushBackItem(lang.get("all"));
listBoxMapFilter.pushBackItem("-");
for(int i=1; i<GameConstants::maxPlayers+1; ++i){
listBoxMapFilter.pushBackItem(intToStr(i));
}