mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Reference both cases for "Complete the game" in code
We had two separate cases for translators for this string (a "TO UNLOCK:" one and a secret lab trophy one) but I forgot to use the latter in the code, so both places in the game were using the former. This is now fixed.
This commit is contained in:
parent
f240fc517b
commit
74a94ae1a8
1 changed files with 1 additions and 1 deletions
|
@ -1801,7 +1801,7 @@ void Graphics::drawtrophytext(void)
|
|||
break;
|
||||
case 7:
|
||||
top_text = loc::gettext("GAME COMPLETE");
|
||||
bottom_text = loc::gettext("Complete the game");
|
||||
bottom_text = loc::gettext_case("Complete the game", 1);
|
||||
break;
|
||||
case 8:
|
||||
top_text = loc::gettext("FLIP MODE COMPLETE");
|
||||
|
|
Loading…
Reference in a new issue