summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/bt45x.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/bt45x.cpp')
-rw-r--r--src/devices/video/bt45x.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/bt45x.cpp b/src/devices/video/bt45x.cpp
index 81723eeda99..f1176ee5f77 100644
--- a/src/devices/video/bt45x.cpp
+++ b/src/devices/video/bt45x.cpp
@@ -146,7 +146,7 @@ void bt45x_rgb_device_base::device_start()
m_color_ram = std::make_unique<std::array<u8, 3>[]>(m_palette_colors + m_overlay_colors);
- //save_pointer(NAME(m_color_ram.get()), m_palette_colors + m_overlay_colors);
+ //save_pointer(NAME(m_color_ram), m_palette_colors + m_overlay_colors);
}
void bt45x_mono_device_base::device_start()
@@ -155,7 +155,7 @@ void bt45x_mono_device_base::device_start()
m_color_ram = std::make_unique<u8[]>(m_palette_colors + m_overlay_colors);
- save_pointer(NAME(m_color_ram.get()), m_palette_colors + m_overlay_colors);
+ save_pointer(NAME(m_color_ram), m_palette_colors + m_overlay_colors);
}
void bt45x_device_base::device_reset()