summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/saturn.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/saturn.h')
-rw-r--r--src/mame/includes/saturn.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/saturn.h b/src/mame/includes/saturn.h
index a1445658ebe..b1a441875cf 100644
--- a/src/mame/includes/saturn.h
+++ b/src/mame/includes/saturn.h
@@ -85,7 +85,7 @@ protected:
attotime m_sinit_boost_timeslice;
struct {
- uint16_t **framebuffer_display_lines;
+ std::unique_ptr<uint16_t * []> framebuffer_display_lines;
int framebuffer_mode;
int framebuffer_double_interlace;
int fbcr_accessed;
@@ -96,9 +96,9 @@ protected:
int framebuffer_clear_on_next_frame;
rectangle system_cliprect;
rectangle user_cliprect;
- std::unique_ptr<uint16_t[]> framebuffer[2];
- uint16_t **framebuffer_draw_lines;
- std::unique_ptr<uint8_t[]> gfx_decode;
+ std::unique_ptr<uint16_t []> framebuffer[2];
+ std::unique_ptr<uint16_t * []> framebuffer_draw_lines;
+ std::unique_ptr<uint8_t []> gfx_decode;
uint16_t lopr;
uint16_t copr;
uint16_t ewdr;