Fixed small bug related to summary screen index.

This commit is contained in:
CaptainSegis 2017-02-03 23:58:25 -05:00
parent 144e7750c5
commit 3e1efbae1f
2 changed files with 3 additions and 2 deletions

View File

@ -424,6 +424,7 @@
Public Structure Temp Public Structure Temp
Public Shared PokemonScreenIndex As Integer = 0 Public Shared PokemonScreenIndex As Integer = 0
Public Shared PokemonSummaryPageIndex As Integer = 0
Public Shared PokemonStatusPageIndex As Integer = 0 Public Shared PokemonStatusPageIndex As Integer = 0
Public Shared BagIndex As Integer = 0 Public Shared BagIndex As Integer = 0
Public Shared BagSelectIndex As Integer = 0 Public Shared BagSelectIndex As Integer = 0

View File

@ -52,7 +52,7 @@
_texture = TextureManager.GetTexture("GUI\Menus\General") _texture = TextureManager.GetTexture("GUI\Menus\General")
_pageIndex = Player.Temp.PokemonScreenIndex _pageIndex = Player.Temp.PokemonSummaryPageIndex
_partyIndex = partyIndex _partyIndex = partyIndex
_party = party _party = party
@ -68,7 +68,7 @@
_texture = TextureManager.GetTexture("GUI\Menus\General") _texture = TextureManager.GetTexture("GUI\Menus\General")
_pageIndex = Player.Temp.PokemonScreenIndex _pageIndex = Player.Temp.PokemonSummaryPageIndex
_selectedPokemon = selectedPokemon _selectedPokemon = selectedPokemon
SetPointerDest(_partyIndex) SetPointerDest(_partyIndex)