summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/spool99.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-12-17 11:10:30 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-12-17 11:10:30 +0100
commit174720a64ddeed98078139dc0e4dd7aed15f91d4 (patch)
treeb22e4fb4f1a210751cadc5aa01d73113b8e9857f /src/mame/drivers/spool99.cpp
parentbe38cd71bb958d651ba91db8db439edc9c31b21e (diff)
removed auto_bitmap_ind*_alloc and auto_bitmap_rgb32_alloc and replaced with std::unique_ptr (nw)
auto_alloc_array to unique_ptr Added make_unique_clear
Diffstat (limited to 'src/mame/drivers/spool99.cpp')
-rw-r--r--src/mame/drivers/spool99.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/spool99.cpp b/src/mame/drivers/spool99.cpp
index de393b3b619..7b331e14ccd 100644
--- a/src/mame/drivers/spool99.cpp
+++ b/src/mame/drivers/spool99.cpp
@@ -454,7 +454,7 @@ ROM_END
DRIVER_INIT_MEMBER(spool99_state,spool99)
{
UINT8 *ROM = memregion("maincpu")->base();
-// vram = auto_alloc_array(machine(), UINT8, 0x2000);
+// vram = std::make_unique<UINT8[]>(0x2000);
memcpy(m_main, ROM, 0x100);
}