slight addition to the previous commit

remove some now unneeded functions/variables (nw)
This commit is contained in:
Dirk Best 2015-08-05 15:08:35 +02:00
parent 70572b304e
commit 195ff0fd7b
2 changed files with 0 additions and 7 deletions

View File

@ -528,16 +528,12 @@ void macrossp_state::machine_start()
{ {
save_item(NAME(m_sndpending)); save_item(NAME(m_sndpending));
save_item(NAME(m_snd_toggle)); save_item(NAME(m_snd_toggle));
save_item(NAME(m_fade_effect));
save_item(NAME(m_old_fade));
} }
void macrossp_state::machine_reset() void macrossp_state::machine_reset()
{ {
m_sndpending = 0; m_sndpending = 0;
m_snd_toggle = 0; m_snd_toggle = 0;
m_fade_effect = 0;
m_old_fade = 0;
} }
static MACHINE_CONFIG_START( macrossp, macrossp_state ) static MACHINE_CONFIG_START( macrossp, macrossp_state )

View File

@ -64,8 +64,6 @@ public:
/* misc */ /* misc */
int m_sndpending; int m_sndpending;
int m_snd_toggle; int m_snd_toggle;
INT32 m_fade_effect;
INT32 m_old_fade;
/* devices */ /* devices */
required_device<cpu_device> m_maincpu; required_device<cpu_device> m_maincpu;
@ -97,6 +95,5 @@ public:
void screen_eof_macrossp(screen_device &screen, bool state); void screen_eof_macrossp(screen_device &screen, bool state);
void draw_sprites(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); void draw_sprites(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
void draw_layer(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect, int layer, int linem, int pri); void draw_layer(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect, int layer, int linem, int pri);
void update_colors( );
DECLARE_WRITE_LINE_MEMBER(irqhandler); DECLARE_WRITE_LINE_MEMBER(irqhandler);
}; };