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

version 1.4, 2004/02/07 21:23:22 version 1.5, 2005/02/07 14:46:10
Line 18  const char x1knjname[]  = "FNT1616.X1"; Line 18  const char x1knjname[]  = "FNT1616.X1";
 const char x68kfontname[]       = "CGROM.DAT";  const char x68kfontname[]       = "CGROM.DAT";
   
   
 static void patch29(UINT jish, const BYTE *src) {  static void patch29(UINT jish, const UINT8 *src) {
   
         UINT    i;          UINT    i;
         BYTE    *p;          UINT8   *p;
   
         p = fontrom + 0x21000 + (jish << 4);          p = fontrom + 0x21000 + (jish << 4);
         for (i=0x21; i<0x7f; i++) {          for (i=0x21; i<0x7f; i++) {
Line 35  static void patch2c(void) { Line 35  static void patch2c(void) {
   
         UINT    i;          UINT    i;
         UINT    j;          UINT    j;
 const BYTE      *p;  const UINT8     *p;
         BYTE    *q;          UINT8   *q;
   
         p = fontdata_2c;          p = fontdata_2c;
         q = fontrom + 0x240c0;          q = fontrom + 0x240c0;
Line 53  const BYTE *p; Line 53  const BYTE *p;
   
 // ----  // ----
   
 void fontdata_ank8store(const BYTE *ptr, UINT pos, UINT cnt) {  void fontdata_ank8store(const UINT8 *ptr, UINT pos, UINT cnt) {
   
         BYTE    *dat;          UINT8   *dat;
   
         dat = fontrom + 0x82000 + (pos * 16);          dat = fontrom + 0x82000 + (pos * 16);
         while(cnt--) {          while(cnt--) {

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


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