sovereignx/src/reload_save.c

33 lines
976 B
C
Raw Normal View History

2017-09-16 03:12:45 +01:00
#include "global.h"
#include "main.h"
#include "crt0.h"
2017-09-16 03:12:45 +01:00
#include "gpu_regs.h"
#include "m4a.h"
#include "load_save.h"
#include "save.h"
#include "new_game.h"
2017-10-12 08:06:19 +01:00
#include "overworld.h"
#include "malloc.h"
2017-09-16 03:12:45 +01:00
// Reloads the game, continuing from the point of the last save
// Used to gracefully exit after a link connection error
void ReloadSave(void)
2017-09-16 03:12:45 +01:00
{
u16 imeBackup = REG_IME;
2017-09-16 03:12:45 +01:00
REG_IME = 0;
RegisterRamReset(RESET_EWRAM);
ReInitializeEWRAM();
2018-02-07 23:00:25 +00:00
ClearGpuRegBits(REG_OFFSET_DISPCNT, DISPCNT_FORCED_BLANK);
2017-09-16 03:12:45 +01:00
REG_IME = imeBackup;
gMain.inBattle = FALSE;
SetSaveBlocksPointers(GetSaveBlocksPointersBaseOffset());
ResetMenuAndMonGlobals();
2018-02-15 22:54:34 +00:00
Save_ResetSaveCounters();
2021-10-29 03:54:41 +01:00
LoadGameSave(SAVE_NORMAL);
2020-01-12 20:27:37 +00:00
if (gSaveFileStatus == SAVE_STATUS_EMPTY || gSaveFileStatus == SAVE_STATUS_CORRUPT)
2017-09-16 03:12:45 +01:00
Sav2_ClearSetDefault();
SetPokemonCryStereo(gSaveBlock2Ptr->optionsSound);
InitHeap(gHeap, HEAP_SIZE);
2018-02-13 23:58:22 +00:00
SetMainCallback2(CB2_ContinueSavedGame);
2017-09-16 03:12:45 +01:00
}