summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/jaguar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/jaguar.cpp')
-rw-r--r--src/mame/video/jaguar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/jaguar.cpp b/src/mame/video/jaguar.cpp
index bb745c11dc7..b9a9b89cffb 100644
--- a/src/mame/video/jaguar.cpp
+++ b/src/mame/video/jaguar.cpp
@@ -775,7 +775,7 @@ void jaguar_state::scanline_update(int param)
/* only run if video is enabled and we are past the "display begin" */
if ((m_gpu_regs[VMODE] & 1) && vc >= (m_gpu_regs[VDB] & 0x7ff))
{
- uint32_t *dest = &m_screen_bitmap.pix32(vc >> 1);
+ uint32_t *dest = &m_screen_bitmap.pix(vc >> 1);
int maxx = visarea.right();
int hde = effective_hvalue(m_gpu_regs[HDE]) >> 1;
uint16_t x,scanline[760];