diff options
Diffstat (limited to 'src/devices/video/ps2gif.cpp')
-rw-r--r-- | src/devices/video/ps2gif.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/ps2gif.cpp b/src/devices/video/ps2gif.cpp index 82ee34e267e..89fcb4d875f 100644 --- a/src/devices/video/ps2gif.cpp +++ b/src/devices/video/ps2gif.cpp @@ -291,8 +291,8 @@ void ps2_gif_device::process_tag(tag_t &tag, uint64_t hi, uint64_t lo) tag.loop(); break; default: - m_gs->regs_w(machine().dummy_space(), 0x54, lo); - m_gs->regs_w(machine().dummy_space(), 0x54, hi); + m_gs->regs_w(0x54, lo); + m_gs->regs_w(0x54, hi); tag.loop(); break; } |