Fixed Menu Icons

This commit is contained in:
JappaWakka 2022-07-31 19:50:29 +02:00
parent b6bb46ba6e
commit 53c5d5ba5f
1 changed files with 1 additions and 1 deletions
P3D/Pokemon/Monster/Resource

View File

@ -278,7 +278,7 @@ Public Class PokemonForms
Public Overridable Function GetMenuImageSize(ByVal P As Pokemon) As Size
Dim sheet As String = GetSheetName(P)
Dim _size As Integer = CInt(TextureManager.GetTexture(sheet).Width / 32)
Dim _size As Integer = CInt(TextureManager.GetTexture("GUI\PokemonMenu\" & sheet).Width / 32)
Return New Size(_size, _size)
End Function