From 90475ff0d943a5f8204ac2b50e34335efd2c35d8 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Mon, 16 Dec 2019 12:22:37 +1100 Subject: [PATCH] naomigd.cpp: fix build - members are constructed in declaration order. at least check that things build with one compiler, people - that would cause a warning with every compiler. (nw) --- src/mame/machine/naomigd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/machine/naomigd.cpp b/src/mame/machine/naomigd.cpp index dbaf667b04c..8274fd33bf7 100644 --- a/src/mame/machine/naomigd.cpp +++ b/src/mame/machine/naomigd.cpp @@ -403,9 +403,9 @@ void naomi_gdrom_board::write_from_qword(uint8_t *region, uint64_t qword) naomi_gdrom_board::naomi_gdrom_board(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : naomi_board(mconfig, NAOMI_GDROM_BOARD, tag, owner, clock), - picdata(*this, finder_base::DUMMY_TAG), m_maincpu(*this, "dimmcpu"), - m_securitycpu(*this, "pic") + m_securitycpu(*this, "pic"), + picdata(*this, finder_base::DUMMY_TAG) { image_tag = nullptr; }