Diff for /xmil/vram/makescrn.c between versions 1.10 and 1.12

version 1.10, 2004/08/12 20:23:31 version 1.12, 2004/08/14 12:16:18
Line 11 Line 11
   
                 MAKESCRN        makescrn;                  MAKESCRN        makescrn;
   
                 BYTE    scrnallflash;                  UINT8   scrnallflash;
 static  BYTE    lastdisp = 0;  static  UINT8   lastdisp = 0;
 static  BYTE    blinktime = 1;  static  UINT8   blinktime = 1;
                 UINT    drawtime = 0;                  UINT    drawtime = 0;
   
   
Line 168  static void changecrtc(void) { Line 168  static void changecrtc(void) {
   
         makescrn.vramtop = crtc.e.pos;          makescrn.vramtop = crtc.e.pos;
   
         scrnxmax = (crtc.s.reg[CRTCREG_HDISP] <= 40)?40:80;          scrnxmax = (crtc.s.width40)?40:80;
         scrnymax = 200;          scrnymax = 200;
         if (crtc.s.reg[CRTCREG_HDISP] <= 40) {          if (crtc.s.width40) {
                 if (lastdisp & SCRN_DRAW4096) {                  if (lastdisp & SCRN_DRAW4096) {
                         widthmode = SCRNWIDTHMODE_4096;                          widthmode = SCRNWIDTHMODE_4096;
                 }                  }

Removed from v.1.10  
changed lines
  Added in v.1.12


RetroPC.NET-CVS <cvs@retropc.net>