Diff for /np2/font/fontpc88.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        "dosio.h"  #include        "dosio.h"
 #include        "memory.h"  #include        "cpucore.h"
 #include        "font.h"  #include        "font.h"
 #include        "fontdata.h"  #include        "fontdata.h"
   
Line 103  BYTE fontpc88_read(const char *filename, Line 103  BYTE fontpc88_read(const char *filename,
                                 // 8dot ANKを読む必要があるか                                  // 8dot ANKを読む必要があるか
                                 if (loading & FONT_ANK8) {                                  if (loading & FONT_ANK8) {
                                         loading &= ~FONT_ANK8;                                          loading &= ~FONT_ANK8;
                                         CopyMemory(fontrom + 0x82000, work + 0x1000, 8*256);                                          fontdata_ank8store(work + 0x1000, 0, 256);
                                 }                                  }
   
                                 // 16dot ASCIIを読む必要があるか                                  // 16dot ASCIIを読む必要があるか
Line 165  BYTE fontpc88_read(const char *filename, Line 165  BYTE fontpc88_read(const char *filename,
                                 // 8dot ANKを読む必要があるか                                  // 8dot ANKを読む必要があるか
                                 if (loading & FONT_ANK8) {                                  if (loading & FONT_ANK8) {
                                         loading &= ~FONT_ANK8;                                          loading &= ~FONT_ANK8;
                                         CopyMemory(fontrom + 0x82000, work + 0x0000, 8*256);                                          fontdata_ank8store(work + 0x0000, 0, 256);
                                 }                                  }
   
                                 // 16dot ASCIIを読む必要があるか                                  // 16dot ASCIIを読む必要があるか

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


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