From 6f78288a9b3addada19911bf7048b5a0e4fe22bc Mon Sep 17 00:00:00 2001 From: ghoulslash Date: Wed, 13 Nov 2024 21:21:45 -0500 Subject: [PATCH] fix dexNavSearchLevels array size --- include/global.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/global.h b/include/global.h index 48cf7efc4f..e2b49c0047 100644 --- a/include/global.h +++ b/include/global.h @@ -212,7 +212,7 @@ struct SaveBlock3 u8 itemFlags[ITEM_FLAGS_COUNT]; #endif #if USE_DEXNAV_SEARCH_LEVELS == TRUE - u8 dexNavSearchLevels[ROUND_BITS_TO_BYTES(NUM_SPECIES)]; + u8 dexNavSearchLevels[NUM_SPECIES]; #endif u8 dexNavChain; }; /* max size 1624 bytes */