diff options
author | 2012-09-18 08:43:04 +0000 | |
---|---|---|
committer | 2012-09-18 08:43:04 +0000 | |
commit | 7e40ce54f21d854327fbe56a5c989014602462ff (patch) | |
tree | 310b268b8424a7eb6b8bffd5b87e808b8c7ccb5e /src/mess/drivers/pasopia7.c | |
parent | 8196b6177882559f277b0688f4f210e352cce6be (diff) |
changed most of screen.machine() to machine() (no whatsnew)
Diffstat (limited to 'src/mess/drivers/pasopia7.c')
-rw-r--r-- | src/mess/drivers/pasopia7.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/drivers/pasopia7.c b/src/mess/drivers/pasopia7.c index 01306186cab..18f9ba2832b 100644 --- a/src/mess/drivers/pasopia7.c +++ b/src/mess/drivers/pasopia7.c @@ -309,16 +309,16 @@ UINT32 pasopia7_state::screen_update_pasopia7(screen_device &screen, bitmap_ind1 { int width; - bitmap.fill(screen.machine().pens[0], cliprect); + bitmap.fill(machine().pens[0], cliprect); width = m_x_width ? 80 : 40; if(m_gfx_mode) - draw_mixed_screen(screen.machine(),bitmap,cliprect,width); + draw_mixed_screen(machine(),bitmap,cliprect,width); else { - draw_cg4_screen(screen.machine(),bitmap,cliprect,width); - draw_tv_screen(screen.machine(),bitmap,cliprect,width); + draw_cg4_screen(machine(),bitmap,cliprect,width); + draw_tv_screen(machine(),bitmap,cliprect,width); } return 0; |