mirror of https://github.com/nmlgc/ReC98.git
6 lines
260 B
C
6 lines
260 B
C
|
// Puts the given [str] onto the graphics RAM at the given position, applying
|
||
|
// the given effect.
|
||
|
#define FX(color, weight, spacing) \
|
||
|
(color | (weight & 3) << 4 | (spacing & 7) << 6)
|
||
|
void graph_putsa_fx(int left, int top, int fx, const unsigned char *str);
|