trunk/src/mame/video/system16.c
| r30994 | r30995 | |
| 659 | 659 | { |
| 660 | 660 | // if the color is set to maximum, shadow pixels underneath us |
| 661 | 661 | if ((pix & 0x03f0) == 0x03f0) |
| 662 | | dest[x] += (m_paletteram[dest[x]] & 0x8000) ? m_palette->entries()*2 : m_palette->entries(); |
| 662 | dest[x] += (m_paletteram[dest[x]] & 0x8000) ? m_palette_entries*2 : m_palette_entries; |
| 663 | 663 | |
| 664 | 664 | // otherwise, just add in sprite palette base |
| 665 | 665 | else |
| r30994 | r30995 | |
| 729 | 729 | { |
| 730 | 730 | // if the color is set to maximum, shadow pixels underneath us |
| 731 | 731 | if ((pix & 0x03f0) == 0x03f0) |
| 732 | | dest[x] += (m_paletteram[dest[x]] & 0x8000) ? m_palette->entries()*2 : m_palette->entries(); |
| 732 | dest[x] += (m_paletteram[dest[x]] & 0x8000) ? m_palette_entries*2 : m_palette_entries; |
| 733 | 733 | |
| 734 | 734 | // otherwise, just add in sprite palette base |
| 735 | 735 | else |
| r30994 | r30995 | |
| 808 | 808 | { |
| 809 | 809 | // if the color is set to maximum, shadow pixels underneath us |
| 810 | 810 | if ((pix & 0x03f0) == 0x03f0) |
| 811 | | dest[x] += (m_paletteram[dest[x]] & 0x8000) ? m_palette->entries()*2 : m_palette->entries(); |
| 811 | dest[x] += (m_paletteram[dest[x]] & 0x8000) ? m_palette_entries*2 : m_palette_entries; |
| 812 | 812 | |
| 813 | 813 | // otherwise, just add in sprite palette base |
| 814 | 814 | else |
| r30994 | r30995 | |
| 871 | 871 | { |
| 872 | 872 | // if the color is set to maximum, shadow pixels underneath us |
| 873 | 873 | if ((pix & 0x03f0) == 0x03f0) |
| 874 | | dest[x] += (m_paletteram[dest[x]] & 0x8000) ? m_palette->entries()*2 : m_palette->entries(); |
| 874 | dest[x] += (m_paletteram[dest[x]] & 0x8000) ? m_palette_entries*2 : m_palette_entries; |
| 875 | 875 | |
| 876 | 876 | // otherwise, just add in sprite palette base |
| 877 | 877 | else |