justification    1259 core/gui_draw.c int draw_string_justified(coord x, coord y, const char *s, twoColors cl, int xo, int max_width, int justification)
justification    1271 core/gui_draw.c     switch (justification & 0xF)
justification    1282 core/gui_draw.c     if ((justification & TEXT_FILL) && (xo > 0))
justification    1289 core/gui_draw.c     if ((justification & TEXT_FILL) && (l < max_width))
justification    1332 core/gui_draw.c int draw_text_justified(coord x, coord y, const char *s, twoColors cl, int max_chars, int max_lines, int justification)
justification    1340 core/gui_draw.c         rx = draw_string_justified(x, y, s, cl, 0, max_chars*FONT_WIDTH, justification);
justification     128 core/gui_draw.h extern int  draw_string_justified(coord x, coord y, const char *s, twoColors cl, int xo, int max_width, int justification);
justification     129 core/gui_draw.h extern int  draw_text_justified(coord x, coord y, const char *s, twoColors cl, int max_chars, int max_lines, int justification);
justification     102 core/gui_mbox.c         int justification = TEXT_LEFT;
justification     105 core/gui_mbox.c             case MBOX_TEXT_CENTER:  justification = TEXT_CENTER; break;
justification     106 core/gui_mbox.c             case MBOX_TEXT_RIGHT:   justification = TEXT_RIGHT; break;
justification     108 core/gui_mbox.c         draw_text_justified(x+FONT_WIDTH, y, mbox_msg, MAKE_COLOR(COLOR_GREY, COLOR_WHITE), w-1, MAX_LINES, justification); // text