summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gomoku.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/gomoku.h')
-rw-r--r--src/mame/includes/gomoku.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mame/includes/gomoku.h b/src/mame/includes/gomoku.h
index 4fbaad1ccb9..521e62b294c 100644
--- a/src/mame/includes/gomoku.h
+++ b/src/mame/includes/gomoku.h
@@ -3,21 +3,24 @@
#ifndef MAME_INCLUDES_GOMOKU_H
#define MAME_INCLUDES_GOMOKU_H
+#pragma once
+
#include "emupal.h"
#include "screen.h"
class gomoku_state : public driver_device
{
public:
- gomoku_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
+ gomoku_state(const machine_config &mconfig, device_type type, const char *tag) :
+ driver_device(mconfig, type, tag),
m_videoram(*this, "videoram"),
m_colorram(*this, "colorram"),
m_bgram(*this, "bgram"),
m_inputs(*this, {"IN0", "IN1", "DSW", "UNUSED0", "UNUSED1", "UNUSED2", "UNUSED3", "UNUSED4"}),
m_maincpu(*this, "maincpu"),
m_gfxdecode(*this, "gfxdecode"),
- m_screen(*this, "screen") { }
+ m_screen(*this, "screen")
+ { }
void gomoku(machine_config &config);