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/video/primo.c | |
parent | 8196b6177882559f277b0688f4f210e352cce6be (diff) |
changed most of screen.machine() to machine() (no whatsnew)
Diffstat (limited to 'src/mess/video/primo.c')
-rw-r--r-- | src/mess/video/primo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/video/primo.c b/src/mess/video/primo.c index a1212ae361b..0263922ddca 100644 --- a/src/mess/video/primo.c +++ b/src/mess/video/primo.c @@ -41,6 +41,6 @@ UINT32 primo_state::screen_update_primo(screen_device &screen, bitmap_ind16 &bit int primo_scanline; for (primo_scanline=0; primo_scanline<192; primo_scanline++) - primo_draw_scanline(screen.machine(), bitmap, primo_scanline); + primo_draw_scanline(machine(), bitmap, primo_scanline); return 0; } |