How can I change the size of the displayed font to display the following entry:
al_draw_textf(font, al_map_rgb(204, 255, 255), WIDTH / 2, 50,\
ALLEGRO_ALIGN_CENTER, "%d : %d", pl1.scope, pl2.scope);
Created a standard ASCII font which I am trying to resize.
ALLEGRO_FONT* font = al_create_builtin_font();
Display of the players' score. (img)
This is the first game, I didn't do anything except console programs before.
ALLEGRO_FONT *al_create_builtin_font(void)
Creates a monochrome bitmap font (8x8 pixels per character).
This font is primarily intended to be used for displaying information in environments or during early runtime states where no external font data is available or loaded (e.g. for debugging).
ALLEGRO_FONT *al_load_font(char const *filename, int size, int flags)