summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-11-10 23:10:39 -0500
committer AJR <ajrhacker@users.noreply.github.com>2019-11-10 23:10:39 -0500
commit3bc0aad093d7eb5bc06fc2aa6396f84069dd1b25 (patch)
treea6d4d826a1a26f5033d5a3c814680d020b6c11e7 /src/mame/machine
parent67f30c15981080b007f02e80a4b631858f75df44 (diff)
Eliminate a few more uses of auto_alloc (nw)
Diffstat (limited to 'src/mame/machine')
-rw-r--r--src/mame/machine/irobot.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/irobot.cpp b/src/mame/machine/irobot.cpp
index 755f29e8312..a56f073ede2 100644
--- a/src/mame/machine/irobot.cpp
+++ b/src/mame/machine/irobot.cpp
@@ -319,7 +319,7 @@ void irobot_state::load_oproms()
int i;
/* allocate RAM */
- m_mbops = auto_alloc_array(machine(), irmb_ops, 1024);
+ m_mbops = std::make_unique<irmb_ops[]>(1024);
for (i = 0; i < 1024; i++)
{