summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/goldstar.h
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-11-21 19:11:38 +1100
committer Vas Crabb <vas@vastheman.com>2018-11-21 19:11:38 +1100
commit82348086bcb13112e15046ce44599bd84abe88d6 (patch)
tree305cf126cabfb09999933f28b1197b57cc6ad8b5 /src/mame/includes/goldstar.h
parent83f7ca88487933e134c9d29387fd697b6e0b765d (diff)
(nw) misc cleanup - mostly missing #include guards and inconsistent initialiser list formatting
Diffstat (limited to 'src/mame/includes/goldstar.h')
-rw-r--r--src/mame/includes/goldstar.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mame/includes/goldstar.h b/src/mame/includes/goldstar.h
index b2aa268f5e2..dd41a4748b7 100644
--- a/src/mame/includes/goldstar.h
+++ b/src/mame/includes/goldstar.h
@@ -1,5 +1,9 @@
// license:BSD-3-Clause
// copyright-holders:David Haywood, Roberto Fresca, Vas Crabb
+#ifndef MAME_INCLUDES_GOLDSTAR_H
+#define MAME_INCLUDES_GOLDSTAR_H
+
+#pragma once
#include "machine/ds2401.h"
#include "machine/i8255.h"
@@ -377,3 +381,5 @@ private:
optional_device<ticket_dispenser_device> m_ticket_dispenser;
};
+
+#endif // MAME_INCLUDES_GOLDSTAR_H