summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/macrossp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/macrossp.h')
-rw-r--r--src/mame/includes/macrossp.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/mame/includes/macrossp.h b/src/mame/includes/macrossp.h
index 6b57a7a6703..d08b039c0c7 100644
--- a/src/mame/includes/macrossp.h
+++ b/src/mame/includes/macrossp.h
@@ -6,6 +6,10 @@
Macross Plus
*************************************************************************/
+#ifndef MAME_INCLUDES_MACROSSP_H
+#define MAME_INCLUDES_MACROSSP_H
+
+#pragma once
#include "machine/gen_latch.h"
#include "emupal.h"
@@ -14,8 +18,8 @@
class macrossp_state : public driver_device
{
public:
- macrossp_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
+ macrossp_state(const machine_config &mconfig, device_type type, const char *tag) :
+ driver_device(mconfig, type, tag),
m_spriteram(*this, "spriteram"),
m_scra_videoram(*this, "scra_videoram"),
m_scra_linezoom(*this, "scra_linezoom"),
@@ -110,3 +114,5 @@ private:
void macrossp_map(address_map &map);
void macrossp_sound_map(address_map &map);
};
+
+#endif // MAME_INCLUDES_MACROSSP_H