Mapper 113: Fixed CHR selection
This commit is contained in:
parent
af0741b50b
commit
9faaa88983
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ protected:
|
|||
if(_multicartMode) {
|
||||
//Mapper 113
|
||||
SelectPRGPage(0, (value >> 3) & 0x07);
|
||||
SelectCHRPage(0, (value & 0x07) | ((value >> 6) & 0x01));
|
||||
SelectCHRPage(0, (value & 0x07) | ((value >> 3) & 0x08));
|
||||
SetMirroringType((value & 0x80) == 0x80 ? MirroringType::Vertical : MirroringType::Horizontal);
|
||||
} else {
|
||||
SelectPRGPage(0, (value >> 3) & 0x01);
|
||||
|
|
Loading…
Add table
Reference in a new issue