summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/kramermc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/kramermc.h')
-rw-r--r--src/mame/includes/kramermc.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/mame/includes/kramermc.h b/src/mame/includes/kramermc.h
index d7b0047830c..ac7409f10d0 100644
--- a/src/mame/includes/kramermc.h
+++ b/src/mame/includes/kramermc.h
@@ -5,21 +5,23 @@
* includes/kramermc.h
*
****************************************************************************/
-
#ifndef MAME_INCLUDES_KRAMERMC_H
#define MAME_INCLUDES_KRAMERMC_H
+#pragma once
+
#include "machine/z80pio.h"
#include "emupal.h"
class kramermc_state : public driver_device
{
public:
- kramermc_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
+ kramermc_state(const machine_config &mconfig, device_type type, const char *tag) :
+ driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_gfxdecode(*this, "gfxdecode"),
- m_palette(*this, "palette") { }
+ m_palette(*this, "palette")
+ { }
void kramermc(machine_config &config);