summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gameplan.h
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/includes/gameplan.h
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/includes/gameplan.h')
-rw-r--r--src/mame/includes/gameplan.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/includes/gameplan.h b/src/mame/includes/gameplan.h
index 5861cc7907d..d01d6d969a9 100644
--- a/src/mame/includes/gameplan.h
+++ b/src/mame/includes/gameplan.h
@@ -50,7 +50,7 @@ public:
optional_shared_ptr<UINT8> m_trvquest_question;
/* video state */
- UINT8 *m_videoram;
+ std::unique_ptr<UINT8[]> m_videoram;
size_t m_videoram_size;
UINT8 m_video_x;
UINT8 m_video_y;