summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gaplus.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/gaplus.h
parent83f7ca88487933e134c9d29387fd697b6e0b765d (diff)
(nw) misc cleanup - mostly missing #include guards and inconsistent initialiser list formatting
Diffstat (limited to 'src/mame/includes/gaplus.h')
-rw-r--r--src/mame/includes/gaplus.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/mame/includes/gaplus.h b/src/mame/includes/gaplus.h
index 98ae9c3902a..3afe0ada2ce 100644
--- a/src/mame/includes/gaplus.h
+++ b/src/mame/includes/gaplus.h
@@ -11,17 +11,16 @@
#include "emupal.h"
#include "screen.h"
-#define MAX_STARS 250
-
-struct star {
- float x,y;
- int col,set;
-};
-
-
class gaplus_base_state : public driver_device
{
public:
+ static constexpr unsigned MAX_STARS = 250;
+
+ struct star {
+ float x,y;
+ int col,set;
+ };
+
enum
{
TIMER_NAMCOIO0_RUN,