summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/buggychl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/buggychl.h')
-rw-r--r--src/mame/includes/buggychl.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/mame/includes/buggychl.h b/src/mame/includes/buggychl.h
index 48d4e2395ff..018feb73fd9 100644
--- a/src/mame/includes/buggychl.h
+++ b/src/mame/includes/buggychl.h
@@ -3,6 +3,10 @@
/*
buggychl
*/
+#ifndef MAME_INCLUDES_BUGGYCHL_H
+#define MAME_INCLUDES_BUGGYCHL_H
+
+#pragma once
#include "machine/taito68705interface.h"
#include "machine/input_merger.h"
@@ -16,8 +20,8 @@
class buggychl_state : public driver_device
{
public:
- buggychl_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
+ buggychl_state(const machine_config &mconfig, device_type type, const char *tag) :
+ driver_device(mconfig, type, tag),
m_charram(*this, "charram"),
m_videoram(*this, "videoram"),
m_spriteram(*this, "spriteram"),
@@ -106,3 +110,5 @@ private:
bool m_sound_irq_enable;
uint8_t m_sprite_lookup[0x2000];
};
+
+#endif // MAME_INCLUDES_BUGGYCHL_H