summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h6280
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-10-22 17:35:04 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-10-22 17:35:04 +0200
commit1446bd7ecddab41b0a0bdf2e933cfc0fd52e3bdd (patch)
treedcac85b6b0db88a047796ac3898a9277fa55da5a /src/devices/cpu/h6280
parenta6bdefec8c76e9878b634119c56438a7673b0385 (diff)
converted lot of TRUE/FALSE to real boolean and updated types (nw)
Diffstat (limited to 'src/devices/cpu/h6280')
-rw-r--r--src/devices/cpu/h6280/h6280.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/h6280/h6280.cpp b/src/devices/cpu/h6280/h6280.cpp
index 469e057c88d..ecb2420e366 100644
--- a/src/devices/cpu/h6280/h6280.cpp
+++ b/src/devices/cpu/h6280/h6280.cpp
@@ -2568,7 +2568,7 @@ bool h6280_device::memory_translate(address_spacenum spacenum, int intention, of
if (spacenum == AS_PROGRAM)
address = translated(address);
- return TRUE;
+ return true;
}
uint8_t h6280_device::io_get_buffer()