GodMode9/source/font.h

15 lines
549 B
C
Raw Normal View History

//---------------------------------------------------------------------------------
#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"
#else
#include "font_orig.h" // if nothing is selected
#endif
//---------------------------------------------------------------------------------
#endif //_font_h_
//---------------------------------------------------------------------------------