mirror of
https://github.com/libretro/Mesen.git
synced 2025-02-21 09:03:35 +00:00
Mapper 113: Fixed CHR selection
This commit is contained in:
parent
af0741b50b
commit
9faaa88983
@ -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…
x
Reference in New Issue
Block a user