diff options
author | 2015-12-17 11:10:30 +0100 | |
---|---|---|
committer | 2015-12-17 11:10:30 +0100 | |
commit | 174720a64ddeed98078139dc0e4dd7aed15f91d4 (patch) | |
tree | b22e4fb4f1a210751cadc5aa01d73113b8e9857f /src/devices/video/huc6261.h | |
parent | be38cd71bb958d651ba91db8db439edc9c31b21e (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/devices/video/huc6261.h')
-rw-r--r-- | src/devices/video/huc6261.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/huc6261.h b/src/devices/video/huc6261.h index b8a86f0e69e..ab04cd01c22 100644 --- a/src/devices/video/huc6261.h +++ b/src/devices/video/huc6261.h @@ -70,7 +70,7 @@ private: UINT8 m_pixel_clock; emu_timer *m_timer; - bitmap_rgb32 *m_bmp; + std::unique_ptr<bitmap_rgb32> m_bmp; INT32 m_uv_lookup[65536][3]; }; |