summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/qix.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2012-01-02 04:59:11 +0000
committer Aaron Giles <aaron@aarongiles.com>2012-01-02 04:59:11 +0000
commit80cd316a2ad134c67ca028a606266bb733a025b6 (patch)
treee198baaf50207b99fd46fb4696cdcda17e94ab65 /src/mame/video/qix.c
parent1ded844ee73ec0768de1b7ccba5491c92fd4ad5a (diff)
Bulk conversion of bitmap_t * to bitmap_t & . With this change the
parameters for the global SCREEN_UPDATE callback match the parameters for the driver_device version. Added allocate() and deallocate() methods to bitmap_t to permit cleaner handling of bitmaps in drivers and modern devices. [Aaron Giles]
Diffstat (limited to 'src/mame/video/qix.c')
-rw-r--r--src/mame/video/qix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/qix.c b/src/mame/video/qix.c
index 116195554fa..1c91aaf5114 100644
--- a/src/mame/video/qix.c
+++ b/src/mame/video/qix.c
@@ -323,7 +323,7 @@ static MC6845_BEGIN_UPDATE( begin_update )
static MC6845_UPDATE_ROW( update_row )
{
qix_state *state = device->machine().driver_data<qix_state>();
- UINT32 *dest = &bitmap->pix32(y);
+ UINT32 *dest = &bitmap.pix32(y);
UINT16 x;
pen_t *pens = (pen_t *)param;