changing to use constants
This commit is contained in:
parent
6872d6f196
commit
dafca0ba22
1 changed files with 2 additions and 2 deletions
|
@ -140,7 +140,7 @@ void Sav2_ClearSetDefault(void)
|
|||
|
||||
void ResetMenuAndMonGlobals(void)
|
||||
{
|
||||
gDifferentSaveFile = 0;
|
||||
gDifferentSaveFile = FALSE;
|
||||
ResetPokedexScrollPositions();
|
||||
ZeroPlayerPartyMons();
|
||||
ZeroEnemyPartyMons();
|
||||
|
@ -153,7 +153,7 @@ void NewGameInitData(void)
|
|||
if (gSaveFileStatus == SAVE_STATUS_EMPTY || gSaveFileStatus == SAVE_STATUS_CORRUPT)
|
||||
RtcReset();
|
||||
|
||||
gDifferentSaveFile = 1;
|
||||
gDifferentSaveFile = TRUE;
|
||||
gSaveBlock2Ptr->encryptionKey = 0;
|
||||
ZeroPlayerPartyMons();
|
||||
ZeroEnemyPartyMons();
|
||||
|
|
Loading…
Reference in a new issue