mirror of
https://github.com/dborth/fceugx.git
synced 2025-01-09 07:09:26 +01:00
13 lines
462 B
C
13 lines
462 B
C
/****************************************************************************
|
|
* IPL_FONT HEADER
|
|
****************************************************************************/
|
|
|
|
#define MARGIN 42
|
|
|
|
void init_font(void);
|
|
void write_font(int x, int y, const unsigned char *string);
|
|
void writex(int x, int y, int sx, int sy, const unsigned char *string, unsigned long *lookup);
|
|
void scroller(int y, unsigned char text[][512], int nlines);
|
|
|
|
int scrollerx;
|