From af9a5e817d3eefdda79e801056b29167ecbcdef9 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Thu, 13 Sep 2012 07:50:33 +0000 Subject: moved constructor of state classes into .h file (no whatsnew) --- src/mess/includes/coco3.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/mess/includes/coco3.h') 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 m_gime; -- cgit v1.2.3