Diff for /np2/font/font.c between versions 1.7 and 1.8

version 1.7, 2004/02/18 21:58:41 version 1.8, 2005/02/07 14:46:10
Line 8 Line 8
   
   
 #ifndef FONTMEMORYBIND  #ifndef FONTMEMORYBIND
         BYTE    __font[0x84000];          UINT8   __font[0x84000];
 #endif  #endif
   
 static const char fonttmpname[] = "font.tmp";  static const char fonttmpname[] = "font.tmp";
Line 16  static const char fonttmpname[] = "font. Line 16  static const char fonttmpname[] = "font.
   
 void font_initialize(void) {  void font_initialize(void) {
   
         BYTE    *p;          UINT8   *p;
         BYTE    *q;          UINT8   *q;
         UINT    i;          UINT    i;
         UINT    j;          UINT    j;
         UINT32  dbit;          UINT32  dbit;
Line 43  void font_initialize(void) { Line 43  void font_initialize(void) {
         }          }
 }  }
   
 static BYTE fonttypecheck(const char *fname) {  static UINT8 fonttypecheck(const char *fname) {
   
 const char      *p;  const char      *p;
   
Line 75  const char *p; Line 75  const char *p;
         return(FONTTYPE_NONE);          return(FONTTYPE_NONE);
 }  }
   
 BYTE font_load(const char *filename, BOOL force) {  UINT8 font_load(const char *filename, BOOL force) {
   
         UINT    i;          UINT    i;
 const BYTE      *p;  const UINT8     *p;
         BYTE    *q;          UINT8   *q;
         UINT    j;          UINT    j;
         char    fname[MAX_PATH];          char    fname[MAX_PATH];
         BYTE    type;          UINT8   type;
         BYTE    loading;          UINT8   loading;
   
         if (filename) {          if (filename) {
                 file_cpyname(fname, filename, sizeof(fname));                  file_cpyname(fname, filename, sizeof(fname));

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


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