mirror of
https://github.com/holub/mame
synced 2025-04-23 17:00:53 +03:00
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)
This commit is contained in:
parent
87d31092e9
commit
90475ff0d9
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user