| 1235 | } |
| 1236 | |
| 1237 | void DrawLevelUpIcon(const Surface &out) |
| 1238 | { |
| 1239 | if (IsLevelUpButtonVisible()) { |
| 1240 | int nCel = lvlbtndown ? 2 : 1; |
| 1241 | DrawString(out, _("Level Up"), { GetMainPanel().position + Displacement { 0, -62 }, { 120, 0 } }, { UiFlags::ColorWhite | UiFlags::AlignCenter }); |
| 1242 | ClxDraw(out, GetMainPanel().position + Displacement { 40, -17 }, (*pChrButtons)[nCel]); |
| 1243 | } |
| 1244 | } |
| 1245 | |
| 1246 | void CheckChrBtns() |
| 1247 | { |
no test coverage detected