From b679e979b630922055b6c2ff065a46b03b0f2a0b Mon Sep 17 00:00:00 2001 From: PokeCodec Date: Mon, 24 Aug 2020 22:47:28 -0400 Subject: [PATCH] Pokedex --- src/pokedex.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/pokedex.c b/src/pokedex.c index cde649e9dd..7c825f40d6 100644 --- a/src/pokedex.c +++ b/src/pokedex.c @@ -172,19 +172,19 @@ struct PokedexView u16 ownCount; u16 monSpriteIds[MAX_MONS_ON_SCREEN]; u16 selectedMonSpriteId; - u16 pokeBallRotationStep; - u16 pokeBallRotationBackup; + s16 pokeBallRotationStep; + s16 pokeBallRotationBackup; u8 pokeBallRotation; u8 initialVOffset; u8 scrollTimer; u8 scrollDirection; s16 listVOffset; s16 listMovingVOffset; - u16 scrollMonIncrement; - u16 maxScrollTimer; + s16 scrollMonIncrement; + s16 maxScrollTimer; u16 scrollSpeed; u16 unkArr1[4]; // Cleared, never read - u8 filler[8]; + u16 filler[4]; u8 currentPage; u8 currentPageBackup; bool8 isSearchResults:1;