summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/gradius3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/gradius3.cpp')
-rw-r--r--src/mame/video/gradius3.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/video/gradius3.cpp b/src/mame/video/gradius3.cpp
index 762be53a29f..b4acf326de0 100644
--- a/src/mame/video/gradius3.cpp
+++ b/src/mame/video/gradius3.cpp
@@ -98,9 +98,8 @@ WRITE16_MEMBER(gradius3_state::gradius3_gfxram_w)
uint32_t gradius3_state::screen_update_gradius3(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
/* TODO: this kludge enforces the char banks. For some reason, they don't work otherwise. */
- address_space &space = machine().dummy_space();
- m_k052109->write(space, 0x1d80, 0x10);
- m_k052109->write(space, 0x1f00, 0x32);
+ m_k052109->write(0x1d80, 0x10);
+ m_k052109->write(0x1f00, 0x32);
m_k052109->tilemap_update();