summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/undrfire.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/undrfire.h')
-rw-r--r--src/mame/includes/undrfire.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/mame/includes/undrfire.h b/src/mame/includes/undrfire.h
index be6a0c4fc52..67351907c6b 100644
--- a/src/mame/includes/undrfire.h
+++ b/src/mame/includes/undrfire.h
@@ -10,16 +10,6 @@
#include "video/tc0480scp.h"
#include "emupal.h"
-struct uf_tempsprite
-{
- int gfx;
- int code,color;
- int flipx,flipy;
- int x,y;
- int zoomx,zoomy;
- int primask;
-};
-
class undrfire_state : public driver_device
{
public:
@@ -44,12 +34,22 @@ public:
void init_cbombers();
protected:
+ enum
+ {
+ TIMER_INTERRUPT5
+ };
+
virtual void video_start() override;
private:
- enum
+ struct uf_tempsprite
{
- TIMER_INTERRUPT5
+ int gfx;
+ int code,color;
+ int flipx,flipy;
+ int x,y;
+ int zoomx,zoomy;
+ int primask;
};
required_device<cpu_device> m_maincpu;