summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/s3c24xx.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2011-12-29 18:29:06 +0000
committer Aaron Giles <aaron@aarongiles.com>2011-12-29 18:29:06 +0000
commit06da0b9b9f3ac511893e17925bddae85bb7ffa7b (patch)
tree9fd6f47d07ec8c5b492b380d9c1e8a949b88f9bd /src/emu/machine/s3c24xx.c
parent87c11a79d70ef787f57a57ba3447f7f1b0d8aa7e (diff)
Change 'screen' parameter in SCREEN_UPDATE and SCREEN_EOF callbacks to a
reference. Remove redundant machine parameter from SCREEN_EOF. Remove old vestiges of driver_device video_eof override since it wasn't being used. Update all multi-screen games to use separate functions for each screen (calling into common code where appropriate). [Aaron Giles] (nw: equivalent MESS changes are ready, will send along shortly)
Diffstat (limited to 'src/emu/machine/s3c24xx.c')
-rw-r--r--src/emu/machine/s3c24xx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/s3c24xx.c b/src/emu/machine/s3c24xx.c
index 77218904352..2184150c5a4 100644
--- a/src/emu/machine/s3c24xx.c
+++ b/src/emu/machine/s3c24xx.c
@@ -758,7 +758,7 @@ static void bitmap_blend( bitmap_t *bitmap_dst, bitmap_t *bitmap_src_1, bitmap_t
}
}
-static UINT32 s3c24xx_video_update( device_t *device, screen_device *screen, bitmap_t *bitmap, const rectangle *cliprect)
+static UINT32 s3c24xx_video_update( device_t *device, screen_device &screen, bitmap_t *bitmap, const rectangle *cliprect)
{
s3c24xx_t *s3c24xx = get_token( device);
if (s3c24xx->lcd.framerate >= 1195)