summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/coco3.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/includes/coco3.h')
-rw-r--r--src/mess/includes/coco3.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mess/includes/coco3.h b/src/mess/includes/coco3.h
index beeae2cc990..4ebf789aaf8 100644
--- a/src/mess/includes/coco3.h
+++ b/src/mess/includes/coco3.h
@@ -35,7 +35,9 @@
class coco3_state : public coco_state
{
public:
- coco3_state(const machine_config &mconfig, device_type type, const char *tag);
+ coco3_state(const machine_config &mconfig, device_type type, const char *tag)
+ : coco_state(mconfig, type, tag),
+ m_gime(*this, GIME_TAG) { }
required_device<gime_base_device> m_gime;