diff options
Diffstat (limited to 'src/mame/drivers/cubeqst.c')
-rw-r--r-- | src/mame/drivers/cubeqst.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/cubeqst.c b/src/mame/drivers/cubeqst.c index cb11c040174..d07ad757e8e 100644 --- a/src/mame/drivers/cubeqst.c +++ b/src/mame/drivers/cubeqst.c @@ -104,7 +104,7 @@ static SCREEN_UPDATE( cubeqst ) */ /* Bit 3 selects LD/#GRAPHICS */ - bitmap->fill(state->m_colormap[255], cliprect); + bitmap.fill(state->m_colormap[255], cliprect); /* TODO: Add 1 for linebuffering? */ for (y = cliprect.min_y; y <= cliprect.max_y; ++y) @@ -112,7 +112,7 @@ static SCREEN_UPDATE( cubeqst ) int i; int num_entries = cubeqcpu_get_ptr_ram_val(screen.machine().device("line_cpu"), y); UINT32 *stk_ram = cubeqcpu_get_stack_ram(screen.machine().device("line_cpu")); - UINT32 *dest = &bitmap->pix32(y); + UINT32 *dest = &bitmap.pix32(y); UINT32 pen; /* Zap the depth buffer */ |