mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-18 01:21:32 +00:00
Localize level/author strings on intermission startup, fixes misalignments.
This commit is contained in:
parent
57eb1a82d6
commit
12bbb5b6f9
1 changed files with 4 additions and 4 deletions
|
@ -862,10 +862,10 @@ class StatusScreen abstract play version("2.5")
|
||||||
enteringPatch = TexMan.CheckForTexture("WIENTER", TexMan.Type_MiscPatch); // "entering"
|
enteringPatch = TexMan.CheckForTexture("WIENTER", TexMan.Type_MiscPatch); // "entering"
|
||||||
finishedPatch = TexMan.CheckForTexture("WIF", TexMan.Type_MiscPatch); // "finished"
|
finishedPatch = TexMan.CheckForTexture("WIF", TexMan.Type_MiscPatch); // "finished"
|
||||||
|
|
||||||
lnametexts[0] = wbstartstruct.thisname;
|
lnametexts[0] = StringTable.Localize(wbstartstruct.thisname);
|
||||||
lnametexts[1] = wbstartstruct.nextname;
|
lnametexts[1] = StringTable.Localize(wbstartstruct.nextname);
|
||||||
authortexts[0] = wbstartstruct.thisauthor;
|
authortexts[0] = StringTable.Localize(wbstartstruct.thisauthor);
|
||||||
authortexts[1] = wbstartstruct.nextauthor;
|
authortexts[1] = StringTable.Localize(wbstartstruct.nextauthor);
|
||||||
|
|
||||||
bg = InterBackground.Create(wbs);
|
bg = InterBackground.Create(wbs);
|
||||||
noautostartmap = bg.LoadBackground(false);
|
noautostartmap = bg.LoadBackground(false);
|
||||||
|
|
Loading…
Reference in a new issue