Skip to content
This repository has been archived by the owner on Sep 11, 2023. It is now read-only.

Commit

Permalink
Merge pull request #122 from negativeExponent/fix_action53_init
Browse files Browse the repository at this point in the history
Fix Action 53 initialization
  • Loading branch information
NovaSquirrel authored Sep 2, 2022
2 parents b175531 + 0d94c93 commit 3c8533a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/Action53.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ class Action53 : public BaseMapper
{
_selectedReg = 0;
_mirroringBit = 0;
memset(_regs, 0, sizeof(_regs));
memset(_regs, 0xFF, sizeof(_regs));

AddRegisterRange(0x5000, 0x5FFF, MemoryOperation::Write);

SelectPRGPage(1, -1);
UpdateState();
}

void StreamState(bool saving) override
Expand Down

0 comments on commit 3c8533a

Please sign in to comment.