* Fix missing GameStateRestore

* Add mapper 403

Co-authored-by: negativeExponent <negativeExponent@users.noreply.github.com>
This commit is contained in:
negativeExponent
2022-01-24 22:53:53 +08:00
committed by GitHub
parent 758a51eacb
commit 03c42f32b3
8 changed files with 108 additions and 0 deletions

View File

@@ -55,8 +55,13 @@ static void Mapper434_Power(void) {
SetWriteHandler(0x8000, 0xFFFF, Mapper434_WriteInnerBank);
}
static void StateRestore(void) {
Mapper434_Sync();
}
void Mapper434_Init(CartInfo *info) {
info->Reset = Mapper434_Reset;
info->Power = Mapper434_Power;
GameStateRestore = StateRestore;
AddExState(&latch, 2, 0, "LATC");
}