summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/snes_ppu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/snes_ppu.cpp')
-rw-r--r--src/devices/video/snes_ppu.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/video/snes_ppu.cpp b/src/devices/video/snes_ppu.cpp
index 76bc3d54cd3..f4c8c1000e6 100644
--- a/src/devices/video/snes_ppu.cpp
+++ b/src/devices/video/snes_ppu.cpp
@@ -360,9 +360,9 @@ void snes_ppu_device::device_start()
save_item(NAME(m_regs));
- save_pointer(NAME(m_vram.get()), SNES_VRAM_SIZE);
- save_pointer(NAME(m_cgram.get()), SNES_CGRAM_SIZE/2);
- save_pointer(NAME(m_oam_ram.get()), SNES_OAM_SIZE/2);
+ save_pointer(NAME(m_vram), SNES_VRAM_SIZE);
+ save_pointer(NAME(m_cgram), SNES_CGRAM_SIZE/2);
+ save_pointer(NAME(m_oam_ram), SNES_OAM_SIZE/2);
}
void snes_ppu_device::device_reset()