summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/baraduke.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/baraduke.h')
-rw-r--r--src/mame/includes/baraduke.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/mame/includes/baraduke.h b/src/mame/includes/baraduke.h
index e0d24f56c59..80cc9f4205e 100644
--- a/src/mame/includes/baraduke.h
+++ b/src/mame/includes/baraduke.h
@@ -1,13 +1,18 @@
// license:BSD-3-Clause
// copyright-holders:Manuel Abadia
+#ifndef MAME_INCLUDES_BARADUKE_H
+#define MAME_INCLUDES_BARADUKE_H
+
+#pragma once
+
#include "sound/namco.h"
#include "emupal.h"
class baraduke_state : public driver_device
{
public:
- baraduke_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
+ baraduke_state(const machine_config &mconfig, device_type type, const char *tag) :
+ driver_device(mconfig, type, tag),
m_spriteram(*this, "spriteram"),
m_videoram(*this, "videoram"),
m_textram(*this, "textram"),
@@ -68,3 +73,5 @@ protected:
int m_copy_sprites;
output_finder<2> m_lamps;
};
+
+#endif // MAME_INCLUDES_BARADUKE_H