Diff for /np2/font/fontdata.c between versions 1.3 and 1.4

version 1.3, 2003/12/12 01:04:40 version 1.4, 2004/02/07 21:23:22
Line 53  const BYTE *p; Line 53  const BYTE *p;
   
 // ----  // ----
   
   void fontdata_ank8store(const BYTE *ptr, UINT pos, UINT cnt) {
   
           BYTE    *dat;
   
           dat = fontrom + 0x82000 + (pos * 16);
           while(cnt--) {
                   CopyMemory(dat, ptr, 8);
                   dat += 16;
                   ptr += 8;
           }
   }
   
 void fontdata_patch16a(void) {  void fontdata_patch16a(void) {
   
         CopyMemory(fontrom + 0x80000, fontdata_16 + 0*32*16, 32*16);          CopyMemory(fontrom + 0x80000, fontdata_16 + 0*32*16, 32*16);

Removed from v.1.3  
changed lines
  Added in v.1.4


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