| Previous | 199869 Revisions | Next |
| r17774 Monday 10th September, 2012 at 06:34:53 UTC by Aaron Giles |
|---|
| Fixed invalid partial update calls on negative scanlines. |
| [src/mame/machine] | megavdp.c |
| r17773 | r17774 | |
|---|---|---|
| 2971 | 2971 | |
| 2972 | 2972 | vdp->vdp_handle_scanline_callback(timer.machine(), param); |
| 2973 | 2973 | |
| 2974 | timer.machine().primary_screen->update_partial(timer.machine().primary_screen->vpos()-1); | |
| 2974 | int vpos = timer.machine().primary_screen->vpos(); | |
| 2975 | if (vpos > 0) | |
| 2976 | timer.machine().primary_screen->update_partial(vpos-1); | |
| 2975 | 2977 | } |
| 2976 | 2978 | } |
| 2977 | 2979 |
| Previous | 199869 Revisions | Next |