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

version 1.2, 2003/11/15 07:10:02 version 1.4, 2004/02/07 21:23:22
Line 1 Line 1
 #include        "compiler.h"  #include        "compiler.h"
 #include        "memory.h"  #include        "cpucore.h"
 #include        "font.h"  #include        "font.h"
 #include        "fontdata.h"  #include        "fontdata.h"
 #include        "fontdata.res"  #include        "fontdata.res"
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.2  
changed lines
  Added in v.1.4


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