Previous 199869 Revisions Next

r17434 Friday 24th August, 2012 at 00:13:05 UTC by Angelo Salese
(MESS) Fixed H-Bias effects, fixing in particular a video bug with Teleroboxer, nw
[src/mess/drivers]vboy.c

trunk/src/mess/drivers/vboy.c
r17433r17434
2222    - spaceinv: missing shots
2323    - telerobo: crashes if you die
2424    - telerobo: hangs after winning first match;
25    - telerobo: when you beat your opponent, the winning animation has a gfx bug
26      (HBias negative numbers?)
2725      - vlab: doesn't boot (irq issue?)
2826    - wariolnd: brightness gets suddently darker during intro.
2927   - waterwld: doesn't accept start input at title screen (regression, it used to work);
r17433r17434
287285      for(x=0;x<=w;x++)
288286      {
289287         int src_x,src_y;
290         INT16 y1 = (y+gy);
291         INT16 x1 = (x+gx);
288         INT32 y1 = (y+gy);
289         INT32 x1 = (x+gx);
292290         int pix = 0;
293291
294292         x1 += right ? -gp : gp;
295         if (mode==1)
296            x1 += (INT16)vboy_paramtab[y*2+(right ^ 1)];
297293
298294         src_x = x+mx;
295         if (mode==1)
296            src_x += (INT16)vboy_paramtab[y*2+(right ^ 1)];
297
299298         src_y = y+my;
300299         src_x += right ? -mp : mp;
301300
r17433r17434
475474static SCREEN_UPDATE_IND16( vboy_left )
476475{
477476   vboy_state *state = screen.machine().driver_data<vboy_state>();
478   bitmap.fill(state->m_vip_regs.BKCOL, cliprect);
477   bitmap.fill(screen.machine().pens[state->m_vip_regs.BKCOL], cliprect);
479478   int cur_spt;
480479
481480   if(!(state->m_vip_regs.DPCTRL & 2)) /* Don't bother if screen is off */
r17433r17434
491490static SCREEN_UPDATE_IND16( vboy_right )
492491{
493492   vboy_state *state = screen.machine().driver_data<vboy_state>();
494   bitmap.fill(state->m_vip_regs.BKCOL, cliprect);
493   bitmap.fill(screen.machine().pens[state->m_vip_regs.BKCOL], cliprect);
495494   int cur_spt;
496495
497496   if(!(state->m_vip_regs.DPCTRL & 2)) /* Don't bother if screen is off */

Previous 199869 Revisions Next


© 1997-2024 The MAME Team