Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11,871 changes: 11,871 additions & 0 deletions components/retro-go/fonts/FusionPixel12.c

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions components/retro-go/fonts/fonts.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ extern const rg_font_t font_DejaVu12;
extern const rg_font_t font_DejaVu15;
extern const rg_font_t font_VeraBold11;
extern const rg_font_t font_VeraBold14;
extern const rg_font_t font_FusionPixel;

enum {
RG_FONT_BASIC_8,
Expand All @@ -19,6 +20,7 @@ enum {
RG_FONT_DEJAVU_15,
RG_FONT_VERA_11,
RG_FONT_VERA_14,
RG_FONT_FUSIONPIXEL_12,
RG_FONT_MAX,
};

Expand All @@ -30,4 +32,5 @@ static const rg_font_t *fonts[RG_FONT_MAX] = {
&font_DejaVu15,
&font_VeraBold11,
&font_VeraBold14,
&font_FusionPixel,
};
1 change: 1 addition & 0 deletions components/retro-go/rg_localization.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ typedef enum
RG_LANG_EN = 0,
RG_LANG_FR,
RG_LANG_DE,
RG_LANG_CHS,
//RG_LANG_ES,

RG_LANG_MAX
Expand Down
Loading