summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/progolf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/progolf.c')
-rw-r--r--src/mame/drivers/progolf.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/progolf.c b/src/mame/drivers/progolf.c
index 9e1139aaa6f..3af836bab17 100644
--- a/src/mame/drivers/progolf.c
+++ b/src/mame/drivers/progolf.c
@@ -78,7 +78,7 @@ public:
required_shared_ptr<UINT8> m_videoram;
required_shared_ptr<UINT8> m_fbram;
-
+
UINT8 m_char_pen;
UINT8 m_char_pen_vreg;
UINT8 *m_fg_fb;
@@ -86,7 +86,7 @@ public:
UINT8 m_scrollx_lo;
UINT8 m_gfx_switch;
UINT8 m_sound_cmd;
-
+
DECLARE_WRITE8_MEMBER(charram_w);
DECLARE_WRITE8_MEMBER(char_vregs_w);
DECLARE_WRITE8_MEMBER(scrollx_lo_w);
@@ -96,13 +96,13 @@ public:
DECLARE_READ8_MEMBER(audio_command_r);
DECLARE_READ8_MEMBER(videoram_r);
DECLARE_WRITE8_MEMBER(videoram_w);
-
+
DECLARE_INPUT_CHANGED_MEMBER(coin_inserted);
-
+
virtual void machine_start();
virtual void video_start();
DECLARE_PALETTE_INIT(progolf);
-
+
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
};
@@ -118,7 +118,7 @@ void progolf_state::video_start()
m_scrollx_lo = 0;
m_fg_fb = auto_alloc_array(machine(), UINT8, 0x2000*8);
-
+
save_item(NAME(m_char_pen));
save_item(NAME(m_char_pen_vreg));
save_pointer(NAME(m_fg_fb), 0x2000*8);