diff options
author | 2015-12-19 11:06:06 +0100 | |
---|---|---|
committer | 2015-12-19 11:08:25 +0100 | |
commit | 42adde9fd5658c8bdf1f24f1970072b8a7db0a54 (patch) | |
tree | 250107b6cdbe992c1a3569ec4dcedf4f706f94c0 /src/devices/video/gf4500.h | |
parent | 4facaf6c24e53a17be232c5c3cab31ecca2d0335 (diff) |
auto_alloc_array_clear -> make_unique_clear (nw)
Diffstat (limited to 'src/devices/video/gf4500.h')
-rw-r--r-- | src/devices/video/gf4500.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/gf4500.h b/src/devices/video/gf4500.h index 1a64abaded2..aa8bf8ebf63 100644 --- a/src/devices/video/gf4500.h +++ b/src/devices/video/gf4500.h @@ -35,7 +35,7 @@ private: void vram_write16(UINT16 data); - UINT32 *m_data; + std::unique_ptr<UINT32[]> m_data; int m_screen_x; int m_screen_y; int m_screen_x_max; |