mirror of
https://github.com/pret/berry-fix.git
synced 2026-03-21 17:54:20 -05:00
18 lines
373 B
C
18 lines
373 B
C
#ifndef GUARD_BERRY_FIX_SAVE_H
|
|
#define GUARD_BERRY_FIX_SAVE_H
|
|
|
|
#include "save.h"
|
|
|
|
enum
|
|
{
|
|
SAVE_NORMAL, // Save full save slot
|
|
SAVE_SAVEBLOCKS, // Save just SaveBlock1 and SaveBlock2
|
|
SAVE_SAVEBLOCK2, // Save just SaveBlock2
|
|
};
|
|
|
|
bool32 BerryFix_IdentifyFlash(void);
|
|
u8 BerryFix_TrySave(u8 mode);
|
|
bool8 BerryFix_LoadSave(u32);
|
|
|
|
#endif //GUARD_BERRY_FIX_SAVE_H
|