trunk/src/mess/drivers/odyssey2.c
| r20405 | r20406 | |
| 210 | 210 | 0xCC,0x00,0x00, /* Red */ // i R g b |
| 211 | 211 | 0xa9,0x80,0xff, // i R g B |
| 212 | 212 | 0x82,0xfd,0xdb, // i R G b |
| 213 | | 0xFF,0xFF,0xFF, // i R G B |
| 213 | 0xcc,0xcc,0xcc, // i R G B |
| 214 | 214 | |
| 215 | 215 | /* Background,Grid Bright */ |
| 216 | 216 | 0x80,0x80,0x80, // I r g b |
| r20405 | r20406 | |
| 442 | 442 | WRITE16_MEMBER(odyssey2_state::scanline_postprocess_g7400) |
| 443 | 443 | { |
| 444 | 444 | int vpos = data; |
| 445 | | int y = vpos - i8244_device::START_Y; |
| 445 | int y = vpos - i8244_device::START_Y - 5; |
| 446 | 446 | bitmap_ind16 *bitmap = m_i8244->get_bitmap(); |
| 447 | 447 | bitmap_ind16 *ef934x_bitmap = m_ef9340_1->get_bitmap(); |
| 448 | 448 | |
| r20405 | r20406 | |
| 452 | 452 | } |
| 453 | 453 | |
| 454 | 454 | // apply external LUM setting |
| 455 | | int x_real_start = i8244_device::START_ACTIVE_SCAN + i8244_device::BORDER_SIZE; |
| 456 | | int x_real_end = i8244_device::END_ACTIVE_SCAN - i8244_device::BORDER_SIZE; |
| 455 | int x_real_start = i8244_device::START_ACTIVE_SCAN + i8244_device::BORDER_SIZE + 2; |
| 456 | int x_real_end = i8244_device::END_ACTIVE_SCAN - i8244_device::BORDER_SIZE + 2; |
| 457 | 457 | for ( int x = i8244_device::START_ACTIVE_SCAN; x < i8244_device::END_ACTIVE_SCAN; x++ ) |
| 458 | 458 | { |
| 459 | 459 | UINT16 d = bitmap->pix16( vpos, x ); |