Match CreatePokeDexList
Cherry-picked from the pret Ruby repo
This commit is contained in:
parent
46f4a4bbf7
commit
938aec45d3
1 changed files with 2 additions and 6 deletions
|
@ -2218,18 +2218,14 @@ static void CreatePokedexList(u8 dexMode, u8 order)
|
|||
}
|
||||
else
|
||||
{
|
||||
bool32 r10;
|
||||
s16 r5;
|
||||
|
||||
r10 = r5 = i = 0;
|
||||
for (i = 0; i < temp_dexCount; i++)
|
||||
s16 r5, r10;
|
||||
for (i = 0, r5 = 0, r10 = 0; i < temp_dexCount; i++)
|
||||
{
|
||||
temp_dexNum = i + 1;
|
||||
if (GetSetPokedexFlag(temp_dexNum, FLAG_GET_SEEN))
|
||||
r10 = 1;
|
||||
if (r10)
|
||||
{
|
||||
asm(""); //Needed to match for some reason
|
||||
sPokedexView->pokedexList[r5].dexNum = temp_dexNum;
|
||||
sPokedexView->pokedexList[r5].seen = GetSetPokedexFlag(temp_dexNum, FLAG_GET_SEEN);
|
||||
sPokedexView->pokedexList[r5].owned = GetSetPokedexFlag(temp_dexNum, FLAG_GET_CAUGHT);
|
||||
|
|
Loading…
Reference in a new issue