summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/crt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/crt.h')
-rw-r--r--src/mame/video/crt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/crt.h b/src/mame/video/crt.h
index b7116563d06..bf4c94fd0d5 100644
--- a/src/mame/video/crt.h
+++ b/src/mame/video/crt.h
@@ -55,7 +55,7 @@ private:
int next = 0; /* index of next pixel in list */
};
- crt_point *m_list; /* array of (crt_window_width*crt_window_height) point */
+ std::unique_ptr<crt_point[]> m_list; /* array of (crt_window_width*crt_window_height) point */
std::unique_ptr<int[]> m_list_head; /* head of the list of lit pixels (index in the array) */
/* keep a separate list for each display line (makes the video code slightly faster) */