6 #define TEXRECT_MIN_X 10 7 #define TEXRECT_MAX_X 300 8 #define TEXRECT_MIN_Y 5 9 #define TEXRECT_MAX_Y 220 11 #define GLYPH_SPACE -1 13 #define GLYPH_EXCLAMATION_PNT 36 14 #define GLYPH_TWO_EXCLAMATION 37 15 #define GLYPH_QUESTION_MARK 38 16 #define GLYPH_AMPERSAND 39 17 #define GLYPH_PERCENT 40 18 #define GLYPH_MULTIPLY 50 20 #define GLYPH_MARIO_HEAD 52 22 #define GLYPH_PERIOD 54 23 #define GLYPH_BETA_KEY 55 24 #define GLYPH_UMLAUT 58
void render_text_labels(void)
Renders the text in sTextLabels on screen at the proper locations by iterating a for loop...
Definition: print.c:390
void print_text_fmt_int(s32 x, s32 y, const char *str, s32 n)
Takes a number, finds the intended base, formats the number, and prints it at the given X & Y coordin...
Definition: print.c:178
signed int s32
Definition: ultratypes.h:15
void print_text(s32 x, s32 y, const char *str)
Prints text in the colorful lettering at given X, Y coordinates.
Definition: print.c:231
void print_text_centered(s32 x, s32 y, const char *str)
Prints text in the colorful lettering centered at given X, Y coordinates.
Definition: print.c:262