Previous 199869 Revisions Next

r18568 Tuesday 16th October, 2012 at 23:39:14 UTC by Angelo Salese
Small fix to the text tilemap
[src/mame/drivers]dblcrown.c

trunk/src/mame/drivers/dblcrown.c
r18567r18568
99     it's just sloppy code?)
1010   - Bogus "Hole" in main screen display
1111   - Is the background pen really black?
12   - Lots of unmapped I/Os (game doesn't make much use of the HW)
1213
1314============================================================================
1415   Excellent System
r18567r18568
119120   {
120121      for (x=0;x<64;x++)
121122      {
122         UINT16 tile = m_vram[count];
123         UINT16 tile = ((m_vram[count])|(m_vram[count+1]<<8)) & 0xfff;
123124         UINT8 col = 0x10; // TODO
124125
125126         drawgfx_transpen(bitmap,cliprect,gfx,tile,col,0,0,x*8,y*8,0);

Previous 199869 Revisions Next


© 1997-2024 The MAME Team