mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-18 20:47:40 +01:00
45297797e6
Need to study the water droplet animation more closely before they can be renamed; otherwise, this names every major symbol in this file.
31 lines
768 B
C
31 lines
768 B
C
#include "global.h"
|
|
#include "main.h"
|
|
#include "gpu_regs.h"
|
|
#include "m4a.h"
|
|
#include "load_save.h"
|
|
#include "save.h"
|
|
#include "new_game.h"
|
|
#include "overworld.h"
|
|
#include "alloc.h"
|
|
|
|
void sub_81700F8(void)
|
|
{
|
|
u16 imeBackup;
|
|
|
|
imeBackup = REG_IME;
|
|
REG_IME = 0;
|
|
RegisterRamReset(0x00000001);
|
|
ClearGpuRegBits(REG_OFFSET_DISPCNT, DISPCNT_FORCED_BLANK);
|
|
REG_IME = imeBackup;
|
|
gMain.inBattle = FALSE;
|
|
SetSaveBlocksPointers(sub_815355C());
|
|
ResetMenuAndMonGlobals();
|
|
Save_ResetSaveCounters();
|
|
Save_LoadGameData(0);
|
|
if (gSaveFileStatus == 0 || gSaveFileStatus == 2)
|
|
Sav2_ClearSetDefault();
|
|
SetPokemonCryStereo(gSaveBlock2Ptr->optionsSound);
|
|
InitHeap(gHeap, HEAP_SIZE);
|
|
SetMainCallback2(CB2_ContinueSavedGame);
|
|
}
|