mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 15:05:06 -04:00
7967ee1f66
* Fix autosaves resetting memory card during minigames * Update description * remove unused include --------- Co-authored-by: MelonSpeedruns <melonspeedruns@stratobox.net>
19 lines
345 B
C
19 lines
345 B
C
#pragma once
|
|
|
|
#ifndef AUTOSAVE_H
|
|
#define AUTOSAVE_H
|
|
|
|
#include <m_Do/m_Do_MemCardRWmng.h>
|
|
#include <m_Do/m_Do_MemCard.h>
|
|
#include <d/actor/d_a_alink.h>
|
|
|
|
void noAutoSave();
|
|
void triggerAutoSave();
|
|
void updateAutoSave();
|
|
void enterAutoSave();
|
|
void autoSaving();
|
|
void waitingForWrite();
|
|
void endAutoSave();
|
|
void toggleAutoSave(bool enabled);
|
|
|
|
#endif |