mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix font_size under windows
This commit is contained in:
parent
4d744cf87a
commit
9a9fcfc9a3
1 changed files with 7 additions and 1 deletions
|
@ -100,7 +100,13 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
/*
|
/*
|
||||||
GUI related things
|
GUI related things
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// TODO: implement dpi-based scaling for windows and remove this hack
|
||||||
|
#if defined(_WIN32)
|
||||||
|
#define TTF_DEFAULT_FONT_SIZE (18)
|
||||||
|
#else
|
||||||
#define TTF_DEFAULT_FONT_SIZE (14)
|
#define TTF_DEFAULT_FONT_SIZE (14)
|
||||||
|
#endif
|
||||||
#define DEFAULT_FONT_SIZE (10)
|
#define DEFAULT_FONT_SIZE (10)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue