summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gomoku.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/gomoku.h')
-rw-r--r--src/mame/includes/gomoku.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/gomoku.h b/src/mame/includes/gomoku.h
index 1475f2f3c97..1fd348d6924 100644
--- a/src/mame/includes/gomoku.h
+++ b/src/mame/includes/gomoku.h
@@ -8,7 +8,8 @@ public:
m_colorram(*this, "colorram"),
m_bgram(*this, "bgram"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen") { }
required_shared_ptr<UINT8> m_videoram;
required_shared_ptr<UINT8> m_colorram;
@@ -29,6 +30,7 @@ public:
UINT32 screen_update_gomoku(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
};