summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gotcha.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/gotcha.h')
-rw-r--r--src/mame/includes/gotcha.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/mame/includes/gotcha.h b/src/mame/includes/gotcha.h
index 2f29c2132ad..5b9e998fb5f 100644
--- a/src/mame/includes/gotcha.h
+++ b/src/mame/includes/gotcha.h
@@ -5,14 +5,19 @@
Gotcha
*************************************************************************/
+#ifndef MAME_INCLUDES_GOTCHA_H
+#define MAME_INCLUDES_GOTCHA_H
+
+#pragma once
+
#include "sound/okim6295.h"
#include "video/decospr.h"
class gotcha_state : public driver_device
{
public:
- gotcha_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
+ gotcha_state(const machine_config &mconfig, device_type type, const char *tag) :
+ driver_device(mconfig, type, tag),
m_fgvideoram(*this, "fgvideoram"),
m_bgvideoram(*this, "bgvideoram"),
m_spriteram(*this, "spriteram"),
@@ -73,3 +78,5 @@ private:
output_finder<3> m_lamp_b;
output_finder<3> m_lamp_s;
};
+
+#endif // MAME_INCLUDES_GOTCHA_H