summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-01-17 16:10:49 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-01-17 16:11:14 +0100
commit5365c003e2109b8809af0a52987d92ce43afe348 (patch)
tree72fe3cc9f9321bd8640c4c784ec6963b83420937 /src/devices/video
parenta0ca8148ebd8751947d6c8521a09b21150915d31 (diff)
fix save_memory in psx (nw)
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 4d621ccc830..7118aef41cc 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", nullptr, 0, "m_packet", (UINT8 *)&m_packet, 1, sizeof( m_packet ) );
+ machine().save().save_memory( this, "globals", std::string(), 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));