| r8657 Saturday 31st July, 2010 at 01:09:47 UTC by Angelo Salese |
|---|
| [MULTI8]: Fixed color reverse bit |
| [src/mess/drivers] | multi8.c |
| r8656 | r8657 | |
|---|---|---|
| 87 | 87 | { |
| 88 | 88 | int pen; |
| 89 | 89 | |
| 90 | pen = (gfx_rom[tile*8+yi] >> (7-xi) & 1) ? color : 0; | |
| 91 | ||
| 92 | 90 | if(attr & 0x20) |
| 93 | pen^=7; | |
| 91 | pen = (gfx_rom[tile*8+yi] >> (7-xi) & 1) ? 0 : color; | |
| 92 | else | |
| 93 | pen = (gfx_rom[tile*8+yi] >> (7-xi) & 1) ? color : 0; | |
| 94 | 94 | |
| 95 | 95 | if(pen) |
| 96 | 96 | *BITMAP_ADDR16(bitmap, y*8+yi, x*8+xi) = screen->machine->pens[pen]; |
| Previous 50 | 9070 Revisions | Next 50 |