summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-01-20 21:32:58 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-01-20 21:32:58 +0100
commit4a57509cafd4c67f61a82d801640478b07059b55 (patch)
tree200ff9d4c22199f439733fd1ab140e925759a63a /src/devices/video
parent724fd46254d9173115fa3156db3d2d1c5b1ee213 (diff)
Revert "fix save_memory in psx (nw)"
This reverts commit 5365c003e2109b8809af0a52987d92ce43afe348.
Diffstat (limited to 'src/devices/video')
-rw-r--r--src/devices/video/psx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/psx.cpp b/src/devices/video/psx.cpp
index 7118aef41cc..4d621ccc830 100644
--- a/src/devices/video/psx.cpp
+++ b/src/devices/video/psx.cpp
@@ -568,7 +568,7 @@ void psxgpu_device::psx_gpu_init( int n_gputype )
}
// icky!!!
- machine().save().save_memory( this, "globals", std::string(), 0, "m_packet", (UINT8 *)&m_packet, 1, sizeof( m_packet ) );
+ machine().save().save_memory( this, "globals", nullptr, 0, "m_packet", (UINT8 *)&m_packet, 1, sizeof( m_packet ) );
save_pointer(NAME(p_vram.get()), width * height );
save_item(NAME(n_gpu_buffer_offset));