2016-02-13 17:29:56 +01:00
|
|
|
//---------------------------------------------------------------------------------
|
|
|
|
#ifndef _font_h_
|
|
|
|
#define _font_h_
|
|
|
|
//---------------------------------------------------------------------------------
|
2016-07-18 03:15:04 +02:00
|
|
|
#if defined FONT_6X10
|
|
|
|
#include "font_6x10.h"
|
|
|
|
#elif defined FONT_ACORN
|
|
|
|
#include "font_acorn_8x8.h"
|
2016-10-31 14:12:08 +01:00
|
|
|
#elif defined FONT_GB
|
|
|
|
#include "font_gb_7x6.h"
|
2016-07-18 03:15:04 +02:00
|
|
|
#else
|
|
|
|
#include "font_orig.h" // if nothing is selected
|
|
|
|
#endif
|
2016-02-13 17:29:56 +01:00
|
|
|
//---------------------------------------------------------------------------------
|
|
|
|
#endif //_font_h_
|
|
|
|
//---------------------------------------------------------------------------------
|