UNROM512: Fixed horizontal/vertical mirroring being inverted
This commit is contained in:
parent
2ac3db319b
commit
4c701ad6cf
1 changed files with 2 additions and 2 deletions
|
@ -22,8 +22,8 @@ protected:
|
||||||
|
|
||||||
_enableMirroringBit = false;
|
_enableMirroringBit = false;
|
||||||
switch(_romInfo.NesHeader.Byte6 & 0x09) {
|
switch(_romInfo.NesHeader.Byte6 & 0x09) {
|
||||||
case 0: SetMirroringType(MirroringType::Vertical); break;
|
case 0: SetMirroringType(MirroringType::Horizontal); break;
|
||||||
case 1: SetMirroringType(MirroringType::Horizontal); break;
|
case 1: SetMirroringType(MirroringType::Vertical); break;
|
||||||
case 8: SetMirroringType(MirroringType::ScreenAOnly); _enableMirroringBit = true; break;
|
case 8: SetMirroringType(MirroringType::ScreenAOnly); _enableMirroringBit = true; break;
|
||||||
case 9: SetMirroringType(MirroringType::FourScreens); break;
|
case 9: SetMirroringType(MirroringType::FourScreens); break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue