trunk/src/mess/video/apple2.c
| r242299 | r242300 | |
| 1201 | 1201 | switch (mon_type) |
| 1202 | 1202 | { |
| 1203 | 1203 | case 0: |
| 1204 | | artifact_map_ptr = &m_hires_artifact_map[((vram_row[col+1] & 0x80) >> 7) * 16]; |
| 1204 | // verified on h/w: setting dhires w/o 80col emulates a rev. 0 Apple ][ with no orange/blue |
| 1205 | if (m_dhires) |
| 1206 | { |
| 1207 | artifact_map_ptr = m_hires_artifact_map; |
| 1208 | } |
| 1209 | else |
| 1210 | { |
| 1211 | artifact_map_ptr = &m_hires_artifact_map[((vram_row[col + 1] & 0x80) >> 7) * 16]; |
| 1212 | } |
| 1205 | 1213 | for (b = 0; b < 7; b++) |
| 1206 | 1214 | { |
| 1207 | 1215 | v = artifact_map_ptr[((w >> (b + 7-1)) & 0x07) | (((b ^ col) & 0x01) << 3)]; |