Diff for /np2/font/font.h between versions 1.3 and 1.6

version 1.3, 2004/02/18 21:58:41 version 1.6, 2011/02/23 10:11:44
Line 1 Line 1
   /**
    * @file        font.h
    * @brief       CGROM and font loader
    *
    * @author      $Author$
    * @date        $Date$
    */
   
 #define FONTMEMORYBIND                          // 520KBくらいメモリ削除(ぉぃ  #define FONTMEMORYBIND                          // 520KBくらいメモリ削除(ぉぃ
   
   
 #ifdef __cplusplus  #ifdef __cplusplus
 extern "C" {  extern "C" {
 #endif  #endif
Line 9  extern "C" { Line 15  extern "C" {
 #ifdef FONTMEMORYBIND  #ifdef FONTMEMORYBIND
 #define fontrom         (mem + FONT_ADRS)  #define fontrom         (mem + FONT_ADRS)
 #else  #else
 extern  BYTE    __font[0x84000];  extern  UINT8   __font[0x84000];
 #define fontrom         (__font)  #define fontrom         (__font)
 #endif  #endif
   
 void font_initialize(void);  void font_initialize(void);
 BYTE font_load(const char *filename, BOOL force);  void font_setchargraph(BOOL epson);
   UINT8 font_load(const OEMCHAR *filename, BOOL force);
   
 #ifdef __cplusplus  #ifdef __cplusplus
 }  }

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


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