(nw) craft - fixed regression

This commit is contained in:
Robbbert 2013-04-14 10:22:39 +00:00
parent a654b2d503
commit 629c98f867

View File

@ -49,7 +49,8 @@ class craft_state : public driver_device
public: public:
craft_state(const machine_config &mconfig, device_type type, const char *tag) craft_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag), : driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu") m_maincpu(*this, "maincpu"),
m_dac(*this, "dac")
{ {
} }
@ -57,8 +58,6 @@ public:
virtual void machine_start(); virtual void machine_start();
dac_device* m_dac;
UINT32 m_last_cycles; UINT32 m_last_cycles;
UINT64 m_frame_start_cycle; UINT64 m_frame_start_cycle;
@ -79,6 +78,7 @@ public:
#if ENABLE_VERBOSE_LOG #if ENABLE_VERBOSE_LOG
inline void verboselog(int n_level, const char *s_fmt, ...); inline void verboselog(int n_level, const char *s_fmt, ...);
#endif #endif
required_device<dac_device> m_dac;
}; };
void craft_state::machine_start() void craft_state::machine_start()