Update ines-correct based on latest tests, update m36...
- Update exiting game database based on latest changes and testing (reference nesdev for one) - Update mapper 36, supports F-15 City War (Spain) (Gluk Video) (Unl) - add Reset function to m177, fixes games freezing when reset is pressed (might not be a hardware behavior, but its annoying for emulators :D)
This commit is contained in:
@@ -59,6 +59,11 @@ static void M177Close(void) {
|
||||
WRAM = NULL;
|
||||
}
|
||||
|
||||
static void M177Reset(void) {
|
||||
reg = 0;
|
||||
Sync();
|
||||
}
|
||||
|
||||
static void StateRestore(int version) {
|
||||
Sync();
|
||||
}
|
||||
@@ -66,6 +71,7 @@ static void StateRestore(int version) {
|
||||
void Mapper177_Init(CartInfo *info) {
|
||||
info->Power = M177Power;
|
||||
info->Close = M177Close;
|
||||
info->Reset = M177Reset;
|
||||
GameStateRestore = StateRestore;
|
||||
|
||||
WRAMSIZE = 8192;
|
||||
|
||||
Reference in New Issue
Block a user