trunk/src/mame/drivers/gunpey.c
| r21497 | r21498 | |
| 243 | 243 | { |
| 244 | 244 | if(!(m_wram[count+0] & 1)) |
| 245 | 245 | { |
| 246 | | x = (m_wram[count+3] >> 8) | ((m_wram[count+4] & 0xff) << 8); |
| 247 | | y = m_wram[count+4] >> 8; |
| 246 | x = (m_wram[count+3] >> 8) | ((m_wram[count+4] & 0x03) << 8); |
| 247 | y = (m_wram[count+4] >> 8) | ((m_wram[count+4] & 0x30) << 4); |
| 248 | 248 | |
| 249 | x-=0x100; |
| 250 | y-=0x100; |
| 251 | |
| 249 | 252 | UINT32 col = 0xffffff; |
| 250 | 253 | |
| 251 | 254 | UINT32 val = (m_wram[count+1] << 16) | ((m_wram[count+2])); |
| r21497 | r21498 | |
| 303 | 306 | #ifndef USE_FAKE_ROM |
| 304 | 307 | letter = -1; |
| 305 | 308 | #endif |
| 306 | | x-=0x1100; |
| 307 | 309 | |
| 308 | 310 | if (letter != -1) |
| 309 | 311 | drawgfx_opaque(bitmap,cliprect,machine().gfx[1],letter,1,0,0,x,y); |