| Previous | 199869 Revisions | Next |
| r21555 Monday 4th March, 2013 at 02:50:15 UTC by Angelo Salese |
|---|
| Fixed janjans2, don't think the game should run in 336 x 239, will look at the CRTC sooner or later ... |
| [src/emu/video] | stvvdp1.c |
| [src/mame/drivers] | ssv.c |
| [src/mess/machine] | pce.c |
| r21554 | r21555 | |
|---|---|---|
| 2673 | 2673 | |
| 2674 | 2674 | /* video hardware */ |
| 2675 | 2675 | MCFG_SCREEN_MODIFY("screen") |
| 2676 | MCFG_SCREEN_VISIBLE_AREA(0, (0xcb-0x23)*2-1, 0, (0xfe - 0x0 | |
| 2676 | MCFG_SCREEN_VISIBLE_AREA(0, (0xcb-0x23)*2-1, 0, (0xfe - 0x0e)-1) | |
| 2677 | 2677 | MACHINE_CONFIG_END |
| 2678 | 2678 | |
| 2679 | 2679 |
| r21554 | r21555 | |
|---|---|---|
| 16 | 16 | #include "emu.h" |
| 17 | 17 | #include "includes/stv.h" |
| 18 | 18 | |
| 19 | #define VDP1_LOG | |
| 19 | #define VDP1_LOG 1 | |
| 20 | 20 | |
| 21 | 21 | |
| 22 | 22 | enum { FRAC_SHIFT = 16 }; |
| r21554 | r21555 | |
|---|---|---|
| 524 | 524 | pce_cd.end_mark = 0; |
| 525 | 525 | } |
| 526 | 526 | |
| 527 | #if 0 // dirty PoP hack test | |
| 528 | { | |
| 529 | static int test; | |
| 530 | ||
| 531 | if(frame == 0xcf4) | |
| 532 | test = 1; | |
| 533 | ||
| 534 | if(test == 1) | |
| 535 | frame-=0xe1; | |
| 536 | } | |
| 537 | #endif | |
| 538 | ||
| 539 | 527 | pce_cd.current_frame = frame; |
| 540 | 528 | pce_cd.end_frame = frame + frame_count; |
| 541 | 529 |
| Previous | 199869 Revisions | Next |