Diff for /np2/vram/maketext.c between versions 1.6 and 1.8

version 1.6, 2004/02/07 21:23:22 version 1.8, 2004/02/18 21:58:41
Line 14  static UINT32 text_table[512]; Line 14  static UINT32 text_table[512];
 static  UINT32  text_tblx2[512][2];  static  UINT32  text_tblx2[512][2];
   
   
 void maketext_reset(void) {  void maketext_initialize(void) {
   
         ZeroMemory(&tramflag, sizeof(tramflag));  
 }  
   
 void maketext_init(void) {  
   
         int             i;          int             i;
         int             j;          int             j;
Line 67  void maketext_init(void) { Line 62  void maketext_init(void) {
         }          }
 }  }
   
   void maketext_reset(void) {
   
           ZeroMemory(&tramflag, sizeof(tramflag));
   }
   
 static BYTE dirtyonblink(void) {  static BYTE dirtyonblink(void) {
   
         BYTE    ret;          BYTE    ret;
Line 159  void maketext(int text_renewal) { Line 159  void maketext(int text_renewal) {
                 tramflag.gaiji = 0;                  tramflag.gaiji = 0;
         }          }
   
         multiple = ((!(gdc.mode1 & 8)) && (!gdc.crt15khz))?0x20:0x00;          multiple = ((!(gdc.mode1 & 8)) && (!(gdc.crt15khz & 1)))?0x20:0x00;
         TEXT_LR = gdc.m.para[GDC_CSRFORM] & 0x1f;          TEXT_LR = gdc.m.para[GDC_CSRFORM] & 0x1f;
         TEXT_PL = crtc.reg.pl;          TEXT_PL = crtc.reg.pl;
         TEXT_BL = crtc.reg.bl + 1;          TEXT_BL = crtc.reg.bl + 1;
Line 470  void maketext40(int text_renewal) { Line 470  void maketext40(int text_renewal) {
                 tramflag.gaiji = 0;                  tramflag.gaiji = 0;
         }          }
   
         multiple = ((!(gdc.mode1 & 8)) && (!gdc.crt15khz))?0x20:0x00;          multiple = ((!(gdc.mode1 & 8)) && (!(gdc.crt15khz & 1)))?0x20:0x00;
         TEXT_LR = gdc.m.para[GDC_CSRFORM] & 0x1f;          TEXT_LR = gdc.m.para[GDC_CSRFORM] & 0x1f;
         TEXT_PL = crtc.reg.pl;          TEXT_PL = crtc.reg.pl;
         TEXT_BL = crtc.reg.bl + 1;          TEXT_BL = crtc.reg.bl + 1;

Removed from v.1.6  
changed lines
  Added in v.1.8


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