Skip to content

Commit

Permalink
Localize "loading location" text
Browse files Browse the repository at this point in the history
  • Loading branch information
IAmMoltony committed Nov 4, 2023
1 parent b1cfed2 commit 7518d6d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion source/game.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1748,7 +1748,15 @@ void Game::update(void)
glBoxFilled(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT, RGB15(17, 17, 17));
glPolyFmt(POLY_CULL_NONE | POLY_ALPHA(31));

font.printCentered(0, 50, "Loading location...");
switch (lang)
{
case Language::English:
font.printCentered(0, 50, "Loading location...");
break;
case Language::Russian:
fontRu.printCentered(0, 50, "Ibesvjmb nqmbykk...");
break;
}

glEnd2D();
glFlush(0);
Expand Down

0 comments on commit 7518d6d

Please sign in to comment.