diff options
Diffstat (limited to 'src/devices/bus/nes/nes_pcb.hxx')
-rw-r--r-- | src/devices/bus/nes/nes_pcb.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/nes/nes_pcb.hxx b/src/devices/bus/nes/nes_pcb.hxx index cc4def22dc0..49a2e234b81 100644 --- a/src/devices/bus/nes/nes_pcb.hxx +++ b/src/devices/bus/nes/nes_pcb.hxx @@ -477,7 +477,7 @@ void nes_cart_slot_device::call_load_pcb() { // A few boards uses 4-screen mirroring: Gauntlet (DDROM or TRR1ROM or Tengen 800004), // Rad Racer II (TVROM), and Napoleon Senki (IREM LROG017 with 74*161/161/21/138) - m_cart->set_four_screen_vram(TRUE); + m_cart->set_four_screen_vram(true); m_cart->set_mirroring(PPU_MIRROR_4SCREEN); } if (!strcmp(mirroring, "pcb_controlled")) @@ -487,7 +487,7 @@ void nes_cart_slot_device::call_load_pcb() // See e.g. HES 6-in-1 vs other HES games, Irem Major League vs other G-101 games, // Sunsoft-2 Shanghai vs Mito Koumon, Camerica BF9093 games vs BF9097 games, etc. // Boards where all games control mirroring do not make real use of this. - m_cart->set_pcb_ctrl_mirror(TRUE); + m_cart->set_pcb_ctrl_mirror(true); } } @@ -513,7 +513,7 @@ void nes_cart_slot_device::call_load_pcb() if (m_pcb_id == TAITO_X1_005 && get_feature("x1-pin17") != nullptr && get_feature("x1-pin31") != nullptr) { if (!strcmp(get_feature("x1-pin17"), "CIRAM A10") && !strcmp(get_feature("x1-pin31"), "NC")) - m_cart->set_x1_005_alt(TRUE); + m_cart->set_x1_005_alt(true); } if (m_pcb_id == KONAMI_VRC2) @@ -554,7 +554,7 @@ void nes_cart_slot_device::call_load_pcb() // pirate variants of boards with bus conflict are often not suffering from it // and actually games glitch if bus conflict is emulated... if (get_feature("bus_conflict") && !strcmp(get_feature("bus_conflict"), "no")) - m_cart->set_bus_conflict(FALSE); + m_cart->set_bus_conflict(false); // SETUP step 4: logging what we have found |