Mapper 464: Reset to menu from Galaxian.

This commit is contained in:
NewRisingSun
2025-09-12 13:39:26 +02:00
parent 675d2ab6dd
commit 3b05920d4b

View File

@@ -846,8 +846,15 @@ static void M464Sync(void) {
setmirror(latche &0x20? MI_H: MI_V);
}
void Mapper464_reset () {
RAM[0x133] = 0;
latche = 0;
M464Sync();
}
void Mapper464_Init(CartInfo *info) {
Latch_Init(info, M464Sync, NULL, 0x0000, 0x8000, 0xFFFF, 1);
info->Reset = Mapper464_reset;
}
/*------------------ Map 488 ---------------------------*/