summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/raiden.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/raiden.h')
-rw-r--r--src/mame/includes/raiden.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/mame/includes/raiden.h b/src/mame/includes/raiden.h
index a143e8e4bab..216cde7092c 100644
--- a/src/mame/includes/raiden.h
+++ b/src/mame/includes/raiden.h
@@ -5,6 +5,10 @@
Seibu Raiden hardware
*******************************************************************************/
+#ifndef MAME_INCLUDES_RAIDEN_H
+#define MAME_INCLUDES_RAIDEN_H
+
+#pragma once
#include "audio/seibu.h"
#include "video/bufsprite.h"
@@ -13,8 +17,8 @@
class raiden_state : public driver_device, protected seibu_sound_common
{
public:
- raiden_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
+ raiden_state(const machine_config &mconfig, device_type type, const char *tag) :
+ driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_subcpu(*this, "sub"),
m_seibu_sound(*this, "seibu_sound"),
@@ -89,3 +93,5 @@ public:
void sei80bu_encrypted_full_map(address_map &map);
void sub_map(address_map &map);
};
+
+#endif // MAME_INCLUDES_RAIDEN_H