summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m6502/m6509.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-01-02 18:22:09 -0500
committer AJR <ajrhacker@users.noreply.github.com>2018-01-02 18:22:21 -0500
commit53c53934a263f9cce8e92841aec08ea08c1838d0 (patch)
treeb7dfd12d8643803c444e2441d962dc3f65e374a6 /src/devices/cpu/m6502/m6509.cpp
parenteaf550d56b5a3d59fa16852f6735932a41d067df (diff)
MT #6810 & MT #6811 (nw)
Diffstat (limited to 'src/devices/cpu/m6502/m6509.cpp')
-rw-r--r--src/devices/cpu/m6502/m6509.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/m6502/m6509.cpp b/src/devices/cpu/m6502/m6509.cpp
index 828d3459b88..5fdf1114f96 100644
--- a/src/devices/cpu/m6502/m6509.cpp
+++ b/src/devices/cpu/m6502/m6509.cpp
@@ -26,9 +26,9 @@ m6509_device::m6509_device(const machine_config &mconfig, const char *tag, devic
void m6509_device::device_start()
{
if(direct_disabled)
- mintf = new mi_6509_nd(this);
+ mintf = std::make_unique<mi_6509_nd>(this);
else
- mintf = new mi_6509_normal(this);
+ mintf = std::make_unique<mi_6509_normal>(this);
init();