summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/snes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/snes.h')
-rw-r--r--src/mame/includes/snes.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/includes/snes.h b/src/mame/includes/snes.h
index e13ed483b38..287a519c21e 100644
--- a/src/mame/includes/snes.h
+++ b/src/mame/includes/snes.h
@@ -299,13 +299,14 @@ struct snes_cart_info
class snes_state : public driver_device
{
public:
- snes_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
+ snes_state(const machine_config &mconfig, device_type type, const char *tag) :
+ driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_soundcpu(*this, "soundcpu"),
m_spc700(*this, "spc700"),
m_ppu(*this, "ppu"),
- m_screen(*this, "screen") { }
+ m_screen(*this, "screen")
+ { }
void init_snes();
void init_snes_hirom();