New default font for Linux et al; new default font sizes. Closer in

apperance between the three main desktops; minimizes italic truncation.
This commit is contained in:
William McBrine
2018-11-19 12:05:23 -05:00
parent e1a58f2f51
commit f0276b33a3

View File

@@ -15,11 +15,16 @@
# elif defined(__APPLE__)
# define PDC_FONT_PATH "/System/Library/Fonts/Menlo.ttc"
# else
# define PDC_FONT_PATH "/usr/share/fonts/truetype/freefont/FreeMono.ttf"
# define PDC_FONT_PATH "/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf"
# endif
# endif
TTF_Font *pdc_ttffont = NULL;
int pdc_font_size = 18;
int pdc_font_size =
# ifdef _WIN32
16;
# else
17;
# endif
#endif
SDL_Window *pdc_window = NULL;