summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/buster.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2012-04-11 14:20:08 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2012-04-11 14:20:08 +0000
commit8382d75558aa344b82c89622fc9e71bfc68a779a (patch)
tree230a6bd7ba036f69c17183872edd8c6704e8f274 /src/mame/drivers/buster.c
parent1903be787024fdf8b733a1a56970afbf1eae2d3d (diff)
Added target() on proper places (no whatsnew)
Diffstat (limited to 'src/mame/drivers/buster.c')
-rw-r--r--src/mame/drivers/buster.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/buster.c b/src/mame/drivers/buster.c
index 2b5f33ef100..43a194f3a2e 100644
--- a/src/mame/drivers/buster.c
+++ b/src/mame/drivers/buster.c
@@ -41,7 +41,7 @@ static SCREEN_UPDATE_IND16(buster)
{
for (x=0;x<32;x++)
{
- int tile = (state->m_vram[count+1])|(state->m_vram[count]<<8);
+ int tile = (state->m_vram.target()[count+1])|(state->m_vram.target()[count]<<8);
//int colour = tile>>12;
drawgfx_opaque(bitmap,cliprect,gfx,tile,0,0,0,x*8,y*4);