(5c867d67d) Added a couple of missing lines to EnglishVanilla

This commit is contained in:
Joonas Rikkonen
2019-05-16 05:59:21 +03:00
parent 9ae25de749
commit 018f20e0f0
16 changed files with 215 additions and 263 deletions
@@ -206,7 +206,7 @@ namespace Barotrauma
for (int i = 0; i < lines.Length; i++)
{
GUI.Font.DrawString(spriteBatch, lines[i],
new Vector2(GameMain.GraphicsWidth / 2.0f - GUI.Font.MeasureString(lines[i]).X / 2.0f, GameMain.GraphicsHeight * 0.78f + i * (15 * GUI.Scale)), Color.White);
new Vector2(GameMain.GraphicsWidth / 2.0f - GUI.Font.MeasureString(lines[i]).X / 2.0f, GameMain.GraphicsHeight * 0.78f + i * 15), Color.White);
}
}