diff options
Diffstat (limited to 'src/devices/bus/vcs/vcs_slot.cpp')
-rw-r--r-- | src/devices/bus/vcs/vcs_slot.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/vcs/vcs_slot.cpp b/src/devices/bus/vcs/vcs_slot.cpp index 8ae6783e2dd..ce28ddcbbfb 100644 --- a/src/devices/bus/vcs/vcs_slot.cpp +++ b/src/devices/bus/vcs/vcs_slot.cpp @@ -222,7 +222,7 @@ image_init_result vcs_cart_slot_device::call_load() if (software_entry() != nullptr) { const char *pcb_name; - bool has_ram = get_software_region("ram") ? TRUE : FALSE; + bool has_ram = get_software_region("ram") ? true : false; memcpy(ROM, get_software_region("rom"), len); if ((pcb_name = get_feature("slot")) != nullptr) |