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

Fix skill level buttons positions

This commit is contained in:
Mathieu Schroeter 2017-10-13 18:43:13 +02:00
parent 10fbf3bf65
commit bf493e706d

View File

@ -1898,12 +1898,12 @@ CEvent::CreateButtons (Sint32 phase)
{ {
if (message == EV_PHASE_SKILL1) if (message == EV_PHASE_SKILL1)
{ {
pos.x = 117; pos.x = 117 + LXOFFSET;
pos.y = 115; pos.y = 115;
} }
if (message == EV_PHASE_SKILL2) if (message == EV_PHASE_SKILL2)
{ {
pos.x = 117; pos.x = 117 + LXOFFSET;
pos.y = 115 + 42; pos.y = 115 + 42;
} }
} }