pokeemerald/src/reset_save_heap.c

31 lines
814 B
C
Raw Normal View History

2017-09-16 04:12:45 +02:00
#include "global.h"
#include "main.h"
#include "gpu_regs.h"
#include "m4a.h"
#include "load_save.h"
#include "save.h"
#include "new_game.h"
2017-10-12 09:06:19 +02:00
#include "overworld.h"
#include "malloc.h"
2017-09-16 04:12:45 +02:00
void sub_81700F8(void)
{
u16 imeBackup;
imeBackup = REG_IME;
REG_IME = 0;
RegisterRamReset(RESET_EWRAM);
2018-02-08 00:00:25 +01:00
ClearGpuRegBits(REG_OFFSET_DISPCNT, DISPCNT_FORCED_BLANK);
2017-09-16 04:12:45 +02:00
REG_IME = imeBackup;
gMain.inBattle = FALSE;
SetSaveBlocksPointers(sub_815355C());
ResetMenuAndMonGlobals();
2018-02-15 23:54:34 +01:00
Save_ResetSaveCounters();
2020-01-12 21:27:37 +01:00
Save_LoadGameData(SAVE_NORMAL);
if (gSaveFileStatus == SAVE_STATUS_EMPTY || gSaveFileStatus == SAVE_STATUS_CORRUPT)
2017-09-16 04:12:45 +02:00
Sav2_ClearSetDefault();
SetPokemonCryStereo(gSaveBlock2Ptr->optionsSound);
InitHeap(gHeap, HEAP_SIZE);
2018-02-14 00:58:22 +01:00
SetMainCallback2(CB2_ContinueSavedGame);
2017-09-16 04:12:45 +02:00
}