Mappers 44,174,331,333,335: Reset to menu.

This commit is contained in:
NewRisingSun
2025-04-01 21:03:03 +02:00
committed by LibretroAdmin
parent 4438d28d1b
commit 7194d208d9
5 changed files with 35 additions and 0 deletions

View File

@@ -32,6 +32,12 @@ static void Sync(void) {
setmirror((latch.addr & 1) ^ 1);
}
static void M174Reset(void) {
latch.addr =0;
Sync();
}
void Mapper174_Init(CartInfo *info) {
Latch_Init(info, Sync, NULL, 0, 0);
info->Reset = M174Reset;
}