summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-06-15 21:01:02 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-06-15 21:01:02 -0400
commitd08bd3cd15812c648e4ebb4d0407a25d03fb5da9 (patch)
treebed3e5df6757c54566e614f36ecc761735de8c73
parent73e3121b0aead732de9c7de156d4be5f0706f0ee (diff)
unsp.cpp: Fix device validation error (nw)
-rw-r--r--src/devices/cpu/unsp/unsp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/unsp/unsp.cpp b/src/devices/cpu/unsp/unsp.cpp
index fe6193f86fd..2805d3a80e0 100644
--- a/src/devices/cpu/unsp/unsp.cpp
+++ b/src/devices/cpu/unsp/unsp.cpp
@@ -99,7 +99,7 @@ unsp_20_device::unsp_20_device(const machine_config &mconfig, const char *tag, d
}
unsp_20_device::unsp_20_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, address_map_constructor internal)
- : unsp_12_device(mconfig, UNSP_20, tag, owner, clock, internal)
+ : unsp_12_device(mconfig, type, tag, owner, clock, internal)
{
m_iso = 20;
}