1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00

Fix music choice text position

This commit is contained in:
Mathieu Schroeter 2018-02-19 18:19:56 +01:00
parent e88e58863b
commit 148e09c7e2

View File

@ -2656,7 +2656,7 @@ CEvent::DrawButtons ()
text = (g_restoreMidi && mid) || !ogg ? gettext ("Midi") : gettext ("Ogg");
lg = GetTextWidth (text);
pos.x = (399 + 40) - lg / 2;
pos.x = (399 + 40) - lg / 2 + LXOFFSET;
pos.y = 330 - 20;
DrawText (m_pPixmap, pos, text);
}