summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/nmk16.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-12-19 11:06:06 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-12-19 11:08:25 +0100
commit42adde9fd5658c8bdf1f24f1970072b8a7db0a54 (patch)
tree250107b6cdbe992c1a3569ec4dcedf4f706f94c0 /src/mame/includes/nmk16.h
parent4facaf6c24e53a17be232c5c3cab31ecca2d0335 (diff)
auto_alloc_array_clear -> make_unique_clear (nw)
Diffstat (limited to 'src/mame/includes/nmk16.h')
-rw-r--r--src/mame/includes/nmk16.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/nmk16.h b/src/mame/includes/nmk16.h
index fb1683e84d7..77cf7317a00 100644
--- a/src/mame/includes/nmk16.h
+++ b/src/mame/includes/nmk16.h
@@ -55,8 +55,8 @@ public:
int mask[4*2];
int m_simple_scroll;
int m_redraw_bitmap;
- UINT16 *m_spriteram_old;
- UINT16 *m_spriteram_old2;
+ std::unique_ptr<UINT16[]> m_spriteram_old;
+ std::unique_ptr<UINT16[]> m_spriteram_old2;
int m_bgbank;
int m_videoshift;
int m_bioship_background_bank;