summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/hd63484.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/devices/video/hd63484.h
parent4facaf6c24e53a17be232c5c3cab31ecca2d0335 (diff)
auto_alloc_array_clear -> make_unique_clear (nw)
Diffstat (limited to 'src/devices/video/hd63484.h')
-rw-r--r--src/devices/video/hd63484.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/hd63484.h b/src/devices/video/hd63484.h
index 8dc2cc25aa0..aca908fe008 100644
--- a/src/devices/video/hd63484.h
+++ b/src/devices/video/hd63484.h
@@ -46,7 +46,7 @@ protected:
private:
// internal state
- UINT16 * m_ram;
+ std::unique_ptr<UINT16[]> m_ram;
UINT16 m_reg[256/2];
int m_fifo_counter;