mirror of
https://github.com/holub/mame
synced 2025-05-16 02:42:05 +03:00
commit
6e70f24440
File diff suppressed because it is too large
Load Diff
@ -68,6 +68,8 @@ public:
|
|||||||
protected:
|
protected:
|
||||||
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
|
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
|
||||||
virtual void device_post_load() override;
|
virtual void device_post_load() override;
|
||||||
|
virtual void machine_start() override;
|
||||||
|
virtual void machine_reset() override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
enum
|
enum
|
||||||
@ -129,8 +131,6 @@ private:
|
|||||||
u16 sci_spriteframe_r();
|
u16 sci_spriteframe_r();
|
||||||
void sci_spriteframe_w(u16 data);
|
void sci_spriteframe_w(u16 data);
|
||||||
void contcirc_out_w(u8 data);
|
void contcirc_out_w(u8 data);
|
||||||
DECLARE_MACHINE_START(taitoz);
|
|
||||||
DECLARE_MACHINE_RESET(taitoz);
|
|
||||||
DECLARE_VIDEO_START(taitoz);
|
DECLARE_VIDEO_START(taitoz);
|
||||||
DECLARE_MACHINE_START(chasehq);
|
DECLARE_MACHINE_START(chasehq);
|
||||||
u32 screen_update_contcirc(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
|
u32 screen_update_contcirc(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
|
||||||
|
@ -222,7 +222,8 @@ void taitoz_state::contcirc_draw_sprites_16x8(screen_device &screen, bitmap_ind1
|
|||||||
color,
|
color,
|
||||||
flipx,flipy,
|
flipx,flipy,
|
||||||
curx,cury,
|
curx,cury,
|
||||||
zx<<12,zy<<13,screen.priority(),primasks[priority],0);
|
zx << 12,zy << 13,
|
||||||
|
screen.priority(),primasks[priority],0);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bad_chunks)
|
if (bad_chunks)
|
||||||
|
Loading…
Reference in New Issue
Block a user