Skip to content

Commit

Permalink
Fixed mapper 71 (#344).
Browse files Browse the repository at this point in the history
  • Loading branch information
punesemu committed Nov 16, 2023
1 parent 7acc1fe commit 3f64b8d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/core/mappers/mapper_071.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

#include <string.h>
#include "mappers.h"
#include "cpu.h"
#include "save_slot.h"

INLINE static void prg_fix_071(void);
Expand Down Expand Up @@ -73,7 +72,7 @@ INLINE static void prg_fix_071(void) {
}
INLINE static void mirroring_fix_071(void) {
if (info.mapper.submapper == 1) {
if (m071.reg & 0x01) {
if (m071.reg & 0x10) {
mirroring_SCR1(0);
} else {
mirroring_SCR0(0);
Expand Down

0 comments on commit 3f64b8d

Please sign in to comment.