summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/powerbal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/powerbal.cpp')
-rw-r--r--src/mame/drivers/powerbal.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/mame/drivers/powerbal.cpp b/src/mame/drivers/powerbal.cpp
index 879b0c00e91..29fbf0c0d17 100644
--- a/src/mame/drivers/powerbal.cpp
+++ b/src/mame/drivers/powerbal.cpp
@@ -16,17 +16,22 @@ Magic Sticks:
*/
#include "emu.h"
+#include "includes/playmark.h"
+
#include "cpu/m68000/m68000.h"
#include "machine/eepromser.h"
#include "sound/okim6295.h"
-#include "includes/playmark.h"
+#include "screen.h"
+#include "speaker.h"
+
class powerbal_state : public playmark_state
{
public:
powerbal_state(const machine_config &mconfig, device_type type, const char *tag)
- : playmark_state(mconfig, type, tag),
- m_eeprom(*this, "eeprom") { }
+ : playmark_state(mconfig, type, tag)
+ , m_eeprom(*this, "eeprom")
+ { }
/* powerbal-specific */
int m_tilebank;