summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/esh.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2011-12-31 21:48:36 +0000
committer Aaron Giles <aaron@aarongiles.com>2011-12-31 21:48:36 +0000
commitfcc81b7c6dcc40a8ae944616501f90963ca2aa08 (patch)
treed0e4ab76c92ca711073e8dd3113103083896156f /src/mame/drivers/esh.c
parent0fb2402169d60ebe944a741408cc7268fd22ca80 (diff)
Bulk converted cliprect * to cliprect & across the system. This makes
cliprects mandatory everywhere. In general, cliprects were being correctly passed through the video side of most drivers already, so it is mostly a semantic change. Note that with my previous change, bitmaps have cliprects, so if you just want to clip to the bitmap's boundaries, pass bitmap->cliprect() instead of NULL (which is no longer permitted). [Aaron Giles]
Diffstat (limited to 'src/mame/drivers/esh.c')
-rw-r--r--src/mame/drivers/esh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/esh.c b/src/mame/drivers/esh.c
index eb3163d1784..85411f08436 100644
--- a/src/mame/drivers/esh.c
+++ b/src/mame/drivers/esh.c
@@ -52,7 +52,7 @@ static SCREEN_UPDATE( esh )
int charx, chary;
/* clear */
- bitmap->fill(0, *cliprect);
+ bitmap->fill(0, cliprect);
/* Draw tiles */
for (charx = 0; charx < 32; charx++)