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)
|
void ResetMenuAndMonGlobals(void)
|
||||||
{
|
{
|
||||||
gDifferentSaveFile = 0;
|
gDifferentSaveFile = FALSE;
|
||||||
ResetPokedexScrollPositions();
|
ResetPokedexScrollPositions();
|
||||||
ZeroPlayerPartyMons();
|
ZeroPlayerPartyMons();
|
||||||
ZeroEnemyPartyMons();
|
ZeroEnemyPartyMons();
|
||||||
|
@ -153,7 +153,7 @@ void NewGameInitData(void)
|
||||||
if (gSaveFileStatus == SAVE_STATUS_EMPTY || gSaveFileStatus == SAVE_STATUS_CORRUPT)
|
if (gSaveFileStatus == SAVE_STATUS_EMPTY || gSaveFileStatus == SAVE_STATUS_CORRUPT)
|
||||||
RtcReset();
|
RtcReset();
|
||||||
|
|
||||||
gDifferentSaveFile = 1;
|
gDifferentSaveFile = TRUE;
|
||||||
gSaveBlock2Ptr->encryptionKey = 0;
|
gSaveBlock2Ptr->encryptionKey = 0;
|
||||||
ZeroPlayerPartyMons();
|
ZeroPlayerPartyMons();
|
||||||
ZeroEnemyPartyMons();
|
ZeroEnemyPartyMons();
|
||||||
|
|
Loading…
Reference in a new issue