Fix attack desc not fitting in ChooseAttackScreen

This commit is contained in:
JappaWakka 2023-12-22 15:34:38 +01:00
parent 8a3a9dbe9b
commit 46026e8de0
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@
Dim p As Vector2 = New Vector2(40, 50)
If Pokemon.Attacks.Count > 0 Then
Canvas.DrawImageBorder(CanvasTexture, 2, New Rectangle(CInt(p.X + 432 - 352 + AttackPos), CInt(p.Y + 18), 288, 384))
Canvas.DrawImageBorder(CanvasTexture, 2, New Rectangle(CInt(p.X + 432 - 352 + AttackPos), CInt(p.Y + 18), 320, 384))
Dim A As BattleSystem.Attack = Pokemon.Attacks(AttackIndex)