summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/badlands.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/badlands.h')
-rw-r--r--src/mame/includes/badlands.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/includes/badlands.h b/src/mame/includes/badlands.h
index 612aed65c48..1b45cffd8a9 100644
--- a/src/mame/includes/badlands.h
+++ b/src/mame/includes/badlands.h
@@ -33,15 +33,15 @@ class badlands_state : public driver_device
{
public:
badlands_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
- m_maincpu(*this, "maincpu"),
- m_audiocpu(*this, "audiocpu"),
- m_soundcomm(*this, "soundcomm"),
- m_screen(*this, "screen"),
- m_gfxdecode(*this, "gfxdecode"),
- m_playfield_tilemap(*this, "playfield"),
- m_mob(*this, "mob")
- { }
+ : driver_device(mconfig, type, tag)
+ , m_maincpu(*this, "maincpu")
+ , m_audiocpu(*this, "audiocpu")
+ , m_soundcomm(*this, "soundcomm")
+ , m_screen(*this, "screen")
+ , m_gfxdecode(*this, "gfxdecode")
+ , m_playfield_tilemap(*this, "playfield")
+ , m_mob(*this, "mob")
+ { }
required_device<cpu_device> m_maincpu;
optional_device<cpu_device> m_audiocpu;