summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/astrocde.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-10-22 18:06:01 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-10-22 18:06:01 +0200
commitd01dd9360f0120b83050d31765e334bd170afd11 (patch)
tree3c31ac660ffab5da3832d9e9e8bf116a45379f36 /src/mame/drivers/astrocde.cpp
parent1446bd7ecddab41b0a0bdf2e933cfc0fd52e3bdd (diff)
cleanup of TRUE/FALSE in mame section (nw)
Diffstat (limited to 'src/mame/drivers/astrocde.cpp')
-rw-r--r--src/mame/drivers/astrocde.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/astrocde.cpp b/src/mame/drivers/astrocde.cpp
index 3744c2f389e..82d31451c07 100644
--- a/src/mame/drivers/astrocde.cpp
+++ b/src/mame/drivers/astrocde.cpp
@@ -137,13 +137,13 @@
WRITE8_MEMBER(astrocde_state::protected_ram_enable_w)
{
- m_ram_write_enable = TRUE;
+ m_ram_write_enable = true;
}
READ8_MEMBER(astrocde_state::protected_ram_r)
{
- m_ram_write_enable = FALSE;
+ m_ram_write_enable = false;
return m_protected_ram[offset];
}
@@ -152,7 +152,7 @@ WRITE8_MEMBER(astrocde_state::protected_ram_w)
{
if (m_ram_write_enable)
m_protected_ram[offset] = data;
- m_ram_write_enable = FALSE;
+ m_ram_write_enable = false;
}