summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/cc40.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-08-15 12:21:42 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-08-15 12:21:42 -0400
commit211bda4a5350c35633c60995bb8dd111e197601f (patch)
tree1ae16e60dd4324ec46d38ee8230b101f77626555 /src/mame/drivers/cc40.cpp
parent9ad1f98b4fb6e4533baae5964e4e3a13a4241fd5 (diff)
ioport: Change PORT_CHANGED_MEMBER param type from void * to u32 (nw)
Diffstat (limited to 'src/mame/drivers/cc40.cpp')
-rw-r--r--src/mame/drivers/cc40.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/cc40.cpp b/src/mame/drivers/cc40.cpp
index f4e556a1e70..5fbdd2a4548 100644
--- a/src/mame/drivers/cc40.cpp
+++ b/src/mame/drivers/cc40.cpp
@@ -403,7 +403,7 @@ void cc40_state::main_map(address_map &map)
INPUT_CHANGED_MEMBER(cc40_state::sysram_size_changed)
{
- init_sysram((int)(uintptr_t)param, newval << 11);
+ init_sysram((int)param, newval << 11);
}
static INPUT_PORTS_START( cc40 )