Mapper 113: Fixed CHR selection

This commit is contained in:
Souryo 2015-12-31 12:07:22 -05:00
parent af0741b50b
commit 9faaa88983

View file

@ -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);