mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-15 11:22:55 +00:00
fonts fix for mac
This commit is contained in:
parent
ce62c240fa
commit
861b869b2d
|
@ -34,7 +34,13 @@ class CreditsState extends MusicBeatState
|
|||
* To use a font from the `assets` folder, use `Paths.font(...)`.
|
||||
* Choose something that will render Unicode properly.
|
||||
*/
|
||||
#if windows
|
||||
static final CREDITS_FONT = 'Consolas';
|
||||
#elseif mac
|
||||
static final CREDITS_FONT = 'Menlo';
|
||||
#else
|
||||
static final CREDITS_FONT = "Courier New";
|
||||
#end
|
||||
|
||||
/**
|
||||
* The size of the font.
|
||||
|
|
Loading…
Reference in a new issue