summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2018-11-19 15:21:25 +0100
committer mooglyguy <therealmogminer@gmail.com>2018-11-19 15:21:40 +0100
commit746ee1609556a348b5c5f51648adaaac18145a93 (patch)
tree3c0258344cf4ccb6206f9ad1a1c3627e79fa1b4c
parenta0edad74126fd360c4a1932dfd277b31368938b5 (diff)
indigo: Fixed indigo3k regression, nw
-rw-r--r--src/mame/drivers/indigo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/indigo.cpp b/src/mame/drivers/indigo.cpp
index e4d2d2f3046..f910f7447ef 100644
--- a/src/mame/drivers/indigo.cpp
+++ b/src/mame/drivers/indigo.cpp
@@ -44,7 +44,6 @@ public:
: driver_device(mconfig, type, tag)
, m_hpc(*this, "hpc")
, m_eeprom(*this, "eeprom")
- , m_share1(*this, "share1")
, m_palette(*this, "palette")
{
}
@@ -142,7 +141,6 @@ protected:
required_device<hpc1_device> m_hpc;
required_device<eeprom_serial_93cxx_device> m_eeprom;
- required_shared_ptr<uint64_t> m_share1;
required_device<palette_device> m_palette;
std::unique_ptr<uint32_t[]> m_dsp_ram;
@@ -176,6 +174,7 @@ public:
: indigo_state(mconfig, type, tag)
, m_maincpu(*this, "maincpu")
, m_mem_ctrl(*this, "memctrl")
+ , m_share1(*this, "share1")
{
}
@@ -190,6 +189,7 @@ protected:
required_device<r4000be_device> m_maincpu;
required_device<sgi_mc_device> m_mem_ctrl;
+ required_shared_ptr<uint64_t> m_share1;
};
void indigo_state::machine_start()