trunk/src/mame/drivers/dblcrown.c
| r18567 | r18568 | |
| 9 | 9 | it's just sloppy code?) |
| 10 | 10 | - Bogus "Hole" in main screen display |
| 11 | 11 | - Is the background pen really black? |
| 12 | - Lots of unmapped I/Os (game doesn't make much use of the HW) |
| 12 | 13 | |
| 13 | 14 | ============================================================================ |
| 14 | 15 | Excellent System |
| r18567 | r18568 | |
| 119 | 120 | { |
| 120 | 121 | for (x=0;x<64;x++) |
| 121 | 122 | { |
| 122 | | UINT16 tile = m_vram[count]; |
| 123 | UINT16 tile = ((m_vram[count])|(m_vram[count+1]<<8)) & 0xfff; |
| 123 | 124 | UINT8 col = 0x10; // TODO |
| 124 | 125 | |
| 125 | 126 | drawgfx_transpen(bitmap,cliprect,gfx,tile,col,0,0,x*8,y*8,0); |